Skip to content

Commit

Permalink
feat: update primary color
Browse files Browse the repository at this point in the history
  • Loading branch information
creamlike1024 committed Apr 30, 2024
1 parent 26b37da commit 53cebe7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions theme.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ type MyTheme struct{}
func (MyTheme) Color(n fyne.ThemeColorName, v fyne.ThemeVariant) color.Color {
switch n {
case theme.ColorNamePrimary:
return color.NRGBA{R: 0xf6, G: 0x5d, B: 0x29, A: 0xff}
return color.NRGBA{R: 0xe6, G: 0x77, B: 0x2e, A: 0xff}
case theme.ColorNameHyperlink:
return color.NRGBA{R: 0xf6, G: 0x5d, B: 0x29, A: 0xff}
return color.NRGBA{R: 0xe6, G: 0x77, B: 0x2e, A: 0xff}
case theme.ColorNameFocus:
return color.NRGBA{R: 0xf5, G: 0x65, B: 0x08, A: 0x2a}
case theme.ColorNameSelection:
Expand Down

0 comments on commit 53cebe7

Please sign in to comment.