Theme Customization
Colors
HtmlForgeX provides 30+ named colors through the TablerColor enum:
TablerColor.Red
TablerColor.Blue
TablerColor.Green
TablerColor.Orange
TablerColor.Purple
TablerColor.Primary
TablerColor.Success
TablerColor.Warning
TablerColor.Danger
TablerColor.InfoRGB Colors
For custom colors, use the RGBColor class:
new RGBColor(255, 128, 0) // Orange
new RGBColor("#FF8000") // From hexSemantic Colors
Semantic colors map to theme-appropriate values:
Primary— Main brand colorSuccess— Positive actions/statusWarning— Caution indicatorsDanger— Errors and destructive actionsInfo— Informational content