From 45dfb151a22188ec23545f7ea0db5e767ca082fd Mon Sep 17 00:00:00 2001 From: fourtf Date: Fri, 9 Feb 2018 15:47:11 +0100 Subject: [PATCH] set background color to grey instead of brown --- src/singletons/thememanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/singletons/thememanager.cpp b/src/singletons/thememanager.cpp index fb9ff0043..d425cb19b 100644 --- a/src/singletons/thememanager.cpp +++ b/src/singletons/thememanager.cpp @@ -59,7 +59,7 @@ void ThemeManager::actuallyUpdate(double hue, double multiplier) QColor themeColor = QColor::fromHslF(hue, 0.5, 0.5); QColor themeColorNoSat = QColor::fromHslF(hue, 0, 0.5); - qreal sat = 0.1; + qreal sat = 0; // 0.05; auto getColor = [multiplier](double h, double s, double l, double a = 1.0) {