some fixes for linux
This commit is contained in:
@@ -69,7 +69,13 @@ void ThemeManager::actuallyUpdate(double hue, double multiplier)
|
||||
|
||||
/// WINDOW
|
||||
{
|
||||
QColor bg = this->window.background = lightWin ? "#fff" : "#444";
|
||||
QColor bg =
|
||||
#ifdef Q_OS_LINUX
|
||||
this->window.background = lightWin ? "#fff" : QColor(61, 60, 56);
|
||||
#else
|
||||
this->window.background = lightWin ? "#fff" : "#444";
|
||||
#endif
|
||||
|
||||
QColor fg = this->window.text = lightWin ? "#000" : "#eee";
|
||||
this->window.borderFocused = lightWin ? "#ccc" : themeColor;
|
||||
this->window.borderUnfocused = lightWin ? "#ccc" : themeColorNoSat;
|
||||
|
||||
Reference in New Issue
Block a user