aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Theme.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Theme.cpp b/src/Theme.cpp
index 86f4995..987ba3a 100644
--- a/src/Theme.cpp
+++ b/src/Theme.cpp
@@ -17,10 +17,10 @@ namespace QuickMedia {
static Theme themes[__NUM_THEMES__];
static void init_theme_dark() {
- themes[THEME_DARK].background_color = sf::Color(21, 25, 30);
+ themes[THEME_DARK].background_color = sf::Color(18, 21, 26);
themes[THEME_DARK].text_color = sf::Color(255, 255, 255);
themes[THEME_DARK].faded_text_color = sf::Color(255, 255, 255, 179);
- themes[THEME_DARK].shade_color = sf::Color(33, 37, 44);
+ themes[THEME_DARK].shade_color = sf::Color(28, 32, 39);
themes[THEME_DARK].selected_color = sf::Color(55, 60, 68);
themes[THEME_DARK].card_item_background_color = sf::Color(28, 32, 39);
themes[THEME_DARK].replies_text_color = sf::Color(129, 162, 190);
@@ -38,7 +38,7 @@ namespace QuickMedia {
themes[THEME_DARK].arrow_color = sf::Color(255, 255, 255, 175);
themes[THEME_DARK].url_text_color = sf::Color(35, 140, 245);
themes[THEME_DARK].loading_page_color = sf::Color(175, 180, 188);
- themes[THEME_DARK].blur_enabled = true;
+ themes[THEME_DARK].blur_enabled = false;
}
static void init_theme_nord() {