Skip to content

Commit

Permalink
refactor: make eclipse the default theme
Browse files Browse the repository at this point in the history
  • Loading branch information
pcfreak30 committed Dec 22, 2024
1 parent 69eec81 commit 0579870
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions internal/config/theme.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,8 @@ func (t Theme) Validate() error {
func defaultThemeConfig() []Theme {
return []Theme{
{
Name: "Blue",
ID: "blue",
Default: true,
Name: "Blue",
ID: "blue",
SystemColors: SystemColors{
Background: Color{247, 0, 0},
SubtleBackground: Color{249, 0, 2},
Expand All @@ -91,8 +90,9 @@ func defaultThemeConfig() []Theme {
},
},
{
Name: "Eclipse",
ID: "eclipse",
Name: "Eclipse",
ID: "eclipse",
Default: true,
SystemColors: SystemColors{
Background: Color{173, 24, 7},
SubtleBackground: Color{175, 24, 9},
Expand Down

0 comments on commit 0579870

Please sign in to comment.