aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-07-07 18:18:07 +0200
committerdec05eba <dec05eba@protonmail.com>2021-07-07 18:18:07 +0200
commit281633ad5652929f3a9130d3ecea4743e32cd4b1 (patch)
treeb698e072ff2a3a9927f788935f7cf64d3c9e02aa /src
parent3c1ab9864d7f89a0649027a32e6af772df9a991e (diff)
default theme: disable blur, change background and shade color
Diffstat (limited to 'src')
-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() {