From 281633ad5652929f3a9130d3ecea4743e32cd4b1 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Wed, 7 Jul 2021 18:18:07 +0200 Subject: default theme: disable blur, change background and shade color --- src/Theme.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') 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() { -- cgit v1.2.3