Adjusted the Insight window colour palette to use softer colours with a higher temperature (less blue)

This commit is contained in:
Nav
2021-08-07 17:31:06 +01:00
parent f4da255b75
commit 81ad21b005
10 changed files with 43 additions and 40 deletions

View File

@@ -23,7 +23,7 @@ void BodyWidget::drawWidget(QPainter& painter) {
// Draw target body
auto targetBodyColor = this->getBodyColor();
auto backgroundColor = QColor("#3C3F41");
auto backgroundColor = QColor("#343532");
if (!this->isEnabled()) {
targetBodyColor.setAlpha(this->getDisableAlphaLevel());

View File

@@ -12,7 +12,7 @@ namespace Bloom::Widgets::InsightTargetWidgets::Dip
private:
// These properties can be modified via Qt style sheets (see Stylesheets/DualInlinePackage.qss)
QColor bodyColor = QColor("#AFB1B3");
QColor bodyColor = QColor("#918E86");
int disableAlphaLevel = 100;
protected:

View File

@@ -55,7 +55,7 @@ namespace Bloom::Widgets::InsightTargetWidgets::Dip
this->bodyWidget->setPinState(pinState);
}
this->setLabelColor(this->pinStateChanged ? "#6FA0FF" : "#a6a7aa");
this->setLabelColor(this->pinStateChanged ? "#4d7bba" : "#a6a7aa");
}
};
}