Merge pull request #154 from dweymouth/feature/lighttheme
Add light theme
This commit is contained in:
@@ -87,6 +87,10 @@ type ReplayGainConfig struct {
|
||||
PreventClipping bool
|
||||
}
|
||||
|
||||
type ThemeConfig struct {
|
||||
Appearance string
|
||||
}
|
||||
|
||||
type Config struct {
|
||||
Application AppConfig
|
||||
Servers []*ServerConfig
|
||||
@@ -101,6 +105,7 @@ type Config struct {
|
||||
LocalPlayback LocalPlaybackConfig
|
||||
Scrobbling ScrobbleConfig
|
||||
ReplayGain ReplayGainConfig
|
||||
Theme ThemeConfig
|
||||
}
|
||||
|
||||
var SupportedStartupPages = []string{"Albums", "Favorites", "Playlists"}
|
||||
@@ -158,6 +163,9 @@ func DefaultConfig(appVersionTag string) *Config {
|
||||
PreampGainDB: 0.0,
|
||||
PreventClipping: true,
|
||||
},
|
||||
Theme: ThemeConfig{
|
||||
Appearance: "Dark",
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user