Change default light theme

This commit is contained in:
Svilen Markov 2025-05-06 11:31:57 +01:00
parent c5d4cf8f68
commit 9ffb2d9939

View File

@ -113,11 +113,12 @@ func newApplication(c *config) (*application, error) {
themeKeys = append(themeKeys, "default-light") themeKeys = append(themeKeys, "default-light")
themeProps = append(themeProps, &themeProperties{ themeProps = append(themeProps, &themeProperties{
Light: true, Light: true,
BackgroundColor: &hslColorField{240, 13, 86}, BackgroundColor: &hslColorField{240, 13, 87},
PrimaryColor: &hslColorField{45, 100, 26}, PrimaryColor: &hslColorField{225, 80, 35},
NegativeColor: &hslColorField{0, 50, 50}, PositiveColor: &hslColorField{100, 100, 25},
ContrastMultiplier: 1.3, NegativeColor: &hslColorField{0, 55, 50},
TextSaturationMultiplier: 0.6, ContrastMultiplier: 1.1,
TextSaturationMultiplier: 0.8,
}) })
themePresets, err := newOrderedYAMLMap(themeKeys, themeProps) themePresets, err := newOrderedYAMLMap(themeKeys, themeProps)