From 175a2bec6071f1b59b990bd3150f617df6789c2e Mon Sep 17 00:00:00 2001 From: Nick Donathan <31076657+ndonathan@users.noreply.github.com> Date: Mon, 18 Nov 2024 18:47:28 -0600 Subject: [PATCH] Update TextColor to use a lighter blue shade in custom theme --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index a2019a3..5391c1e 100644 --- a/main.go +++ b/main.go @@ -58,7 +58,7 @@ func (m *customTheme) HyperlinkColor() color.Color { } func (m *customTheme) TextColor() color.Color { - return color.RGBA{R: 0, G: 0, B: 255, A: 255} + return color.RGBA{R: 0, G: 150, B: 255, A: 255} } func (m *customTheme) DisabledTextColor() color.Color {