diff --git a/src/singletons/thememanager.cpp b/src/singletons/thememanager.cpp index b344b7970..c78c1ca90 100644 --- a/src/singletons/thememanager.cpp +++ b/src/singletons/thememanager.cpp @@ -166,7 +166,7 @@ void ThemeManager::actuallyUpdate(double hue, double multiplier) this->splits.header.background = getColor(0, sat, flat ? 1 : 0.9); this->splits.header.border = getColor(0, sat, flat ? 1 : 0.85); this->splits.header.text = this->messages.textColors.regular; - this->splits.header.activeText = isLight ? QColor(134, 79, 242) : QColor(242, 209, 79); + this->splits.header.focusedText = isLight ? QColor("#198CFF") : QColor("#84C1FF"); this->splits.input.background = getColor(0, sat, flat ? 0.95 : 0.95); this->splits.input.border = getColor(0, sat, flat ? 1 : 1); diff --git a/src/singletons/thememanager.hpp b/src/singletons/thememanager.hpp index 511684222..2de85944c 100644 --- a/src/singletons/thememanager.hpp +++ b/src/singletons/thememanager.hpp @@ -70,7 +70,7 @@ public: QColor border; QColor background; QColor text; - QColor activeText; + QColor focusedText; // int margin; } header; diff --git a/src/widgets/helper/splitheader.cpp b/src/widgets/helper/splitheader.cpp index 08abe9894..9536dfc7c 100644 --- a/src/widgets/helper/splitheader.cpp +++ b/src/widgets/helper/splitheader.cpp @@ -375,7 +375,7 @@ void SplitHeader::themeRefreshEvent() QPalette palette; if (this->split->hasFocus()) { - palette.setColor(QPalette::Foreground, this->themeManager->splits.header.activeText); + palette.setColor(QPalette::Foreground, this->themeManager->splits.header.focusedText); } else { palette.setColor(QPalette::Foreground, this->themeManager->splits.header.text); }