From 6624b635df08a54403648cb1186b35a9eec27d93 Mon Sep 17 00:00:00 2001 From: Svilen Markov <7613769+svilenmarkov@users.noreply.github.com> Date: Sun, 4 May 2025 17:05:20 +0100 Subject: [PATCH] Increase contrast of default light theme --- internal/glance/glance.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/internal/glance/glance.go b/internal/glance/glance.go index 461d00b..cae6094 100644 --- a/internal/glance/glance.go +++ b/internal/glance/glance.go @@ -63,10 +63,11 @@ func newApplication(c *config) (*application, error) { themeKeys = append(themeKeys, "default-light") themeProps = append(themeProps, &themeProperties{ - Light: true, - BackgroundColor: &hslColorField{240, 13, 86}, - PrimaryColor: &hslColorField{45, 100, 26}, - NegativeColor: &hslColorField{0, 50, 50}, + Light: true, + BackgroundColor: &hslColorField{240, 13, 86}, + PrimaryColor: &hslColorField{45, 100, 26}, + NegativeColor: &hslColorField{0, 50, 50}, + ContrastMultiplier: 1.3, }) themePresets, err := newOrderedYAMLMap(themeKeys, themeProps)