Skip to content

Commit

Permalink
Update TextColor to use a lighter blue shade in custom theme
Browse files Browse the repository at this point in the history
  • Loading branch information
ndonathan committed Nov 19, 2024
1 parent 9fe7267 commit 175a2be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 175a2be

Please sign in to comment.