channged piss color to blue

This commit is contained in:
fourtf 2018-06-23 23:48:54 +02:00
parent b056a07f65
commit a91ac5cdf0
3 changed files with 3 additions and 3 deletions

View file

@ -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);

View file

@ -70,7 +70,7 @@ public:
QColor border;
QColor background;
QColor text;
QColor activeText;
QColor focusedText;
// int margin;
} header;

View file

@ -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);
}