ButtonStyleDto
Button styling configuration for a design theme.
All properties are nullable - when null, buttons fall back to theme PrimaryColor/SecondaryColor defaults.
Properties
| Name | Type | Description |
|---|---|---|
| backgroundColor | string | Button background color in hex format (e.g., "#1E88E5") |
Button background color in hex format (e.g., "#1E88E5") | ||
| textColor | string | Button text color in hex format (e.g., "#FFFFFF") |
Button text color in hex format (e.g., "#FFFFFF") | ||
| hoverBackgroundColor | string | Button hover background color in hex format |
Button hover background color in hex format | ||
| hoverTextColor | string | Button hover text color in hex format |
Button hover text color in hex format | ||
JSON Example
{
"backgroundColor": "string",
"textColor": "string",
"hoverBackgroundColor": "string",
"hoverTextColor": "string"
}