diff --git a/src/musikcube/cursespp/Colors.cpp b/src/musikcube/cursespp/Colors.cpp index 03029a46b..74c7c4262 100755 --- a/src/musikcube/cursespp/Colors.cpp +++ b/src/musikcube/cursespp/Colors.cpp @@ -245,8 +245,8 @@ struct Theme { buttonForegroundActive.Set(THEME_COLOR_BUTTON_FOREGROUND_ACTIVE, 24, 24, 20, COLOR_BLACK); /* banner */ - bannerBackground.Set(THEME_COLOR_BACKGROUND, 24, 24, 20, -1); - bannerForeground.Set(THEME_COLOR_TEXT_DISABLED, 128, 128, 128, COLOR_256_MEDIUM_GRAY); + bannerBackground.Set(THEME_COLOR_BANNER_BACKGROUND, 24, 24, 20, -1); + bannerForeground.Set(THEME_COLOR_BANNER_FOREGROUND, 128, 128, 128, COLOR_256_MEDIUM_GRAY); /* footer */ footerBackground.Set(THEME_COLOR_FOOTER_BACKGROUND, 102, 217, 238, COLOR_256_BLUE); @@ -394,8 +394,8 @@ struct Theme { /* banner */ init_pair( Color::Banner, - bannerForeground.Id(mode, COLOR_BLACK), - bannerBackground.Id(mode, COLOR_YELLOW)); + bannerForeground.Id(mode, COLOR_GRAYTEXT), + backgroundId); /* footer */ init_pair( diff --git a/src/musikcube/data/themes/gruvbox_dark.json b/src/musikcube/data/themes/gruvbox_dark.json index 17652d2b5..955d783ae 100644 --- a/src/musikcube/data/themes/gruvbox_dark.json +++ b/src/musikcube/data/themes/gruvbox_dark.json @@ -91,12 +91,12 @@ "palette": 235 }, "banner_background": { - "hex": "#458588", - "palette": 66 + "hex": "#282828", + "palette": 235 }, "banner_foreground": { - "hex": "#fbf1c7", - "palette": 229 + "hex": "#7c6f64", + "palette": 243 }, "footer_background": { "hex": "#b16286", diff --git a/src/musikcube/data/themes/solarized_light.json b/src/musikcube/data/themes/solarized_light.json index 2cdcac642..833bd85ca 100644 --- a/src/musikcube/data/themes/solarized_light.json +++ b/src/musikcube/data/themes/solarized_light.json @@ -91,12 +91,12 @@ "palette": 230 }, "banner_background": { - "hex": "#cb4b16", - "palette": 166 + "hex": "#fdf6e3", + "palette": 230 }, "banner_foreground": { - "hex": "#eee8d5", - "palette": 254 + "hex": "#657b83", + "palette": 241 }, "footer_background": { "hex": "#cb4b16",