More tweaks to Insight colours

This commit is contained in:
Nav
2021-09-23 21:15:24 +01:00
parent c428cff5a1
commit 0d6e4366d7
5 changed files with 13 additions and 13 deletions

View File

@@ -57,7 +57,7 @@ void BitBodyWidget::paintEvent(QPaintEvent* event) {
void BitBodyWidget::drawWidget(QPainter& painter) {
painter.setRenderHints(QPainter::RenderHint::Antialiasing | QPainter::RenderHint::SmoothPixmapTransform, true);
auto bodyColor = QColor(this->bit == true ? "#7B5E38" : "#83817B");
auto bodyColor = QColor(this->bit == true ? "#7B5E38" : "#908D85");
if (!this->isEnabled()) {
bodyColor.setAlpha(100);

View File

@@ -23,9 +23,9 @@
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="5.6"
inkscape:cx="13.920574"
inkscape:cy="10.048712"
inkscape:zoom="11.2"
inkscape:cx="74.919115"
inkscape:cy="39.986431"
inkscape:document-units="px"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
@@ -60,42 +60,42 @@
id="layer1"
transform="translate(1.3229167,1.0583334)">
<rect
style="fill:#7b5f31;fill-opacity:1;stroke-width:0.318943"
style="fill:#7b5e38;fill-opacity:1;stroke-width:0.318943"
id="rect1537"
width="6.6145835"
height="3.175"
x="0.26458332"
y="0.52916664" />
<rect
style="fill:#c4c4c4;fill-opacity:0.545098;stroke-width:0.318943"
style="fill:#908d85;fill-opacity:0.9958061;stroke-width:0.318943"
id="rect1537-5"
width="6.6145835"
height="3.175"
x="7.6729169"
y="0.52916664" />
<rect
style="fill:#c5c5c5;fill-opacity:0.54471;stroke-width:0.318942"
style="fill:#908d85;fill-opacity:0.9958061;stroke-width:0.318942"
id="rect1537-6"
width="6.6145835"
height="3.175"
x="0.26458332"
y="4.4979167" />
<rect
style="fill:#c5c5c5;fill-opacity:0.54471;stroke-width:0.318942"
style="fill:#908d85;fill-opacity:0.9958061;stroke-width:0.318942"
id="rect1537-5-2"
width="6.6145825"
height="3.175"
x="7.6729178"
y="4.4979167" />
<rect
style="fill:#c4c4c4;fill-opacity:0.545098;stroke-width:0.318942"
style="fill:#908d85;fill-opacity:0.9958061;stroke-width:0.318942"
id="rect1537-6-9"
width="6.6145835"
height="3.175"
x="0.26458332"
y="8.4666672" />
<rect
style="fill:#7b5f31;fill-opacity:1;stroke-width:0.318942"
style="fill:#7b5e38;fill-opacity:1;stroke-width:0.318942"
id="rect1537-5-2-1"
width="6.6145825"
height="3.175"

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

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("#908D85");
QColor bodyColor = QColor("#8E8B83");
int disableAlphaLevel = 100;
protected:

View File

@@ -12,7 +12,7 @@ namespace Bloom::Widgets::InsightTargetWidgets::Qfp
private:
// These properties can be modified via Qt style sheets (see Stylesheets/QuadFlatPackage.qss)
QColor bodyColor = QColor("#908D85");
QColor bodyColor = QColor("#8E8B83");
int disableAlphaLevel = 100;
protected:

View File

@@ -29,7 +29,7 @@ namespace Bloom::Widgets::InsightTargetWidgets
bool hoverActive = false;
QColor defaultBodyColor = QColor("#83817B");
QColor defaultBodyColor = QColor("#908D85");
QColor vccBodyColor = QColor("#70383A");
QColor gndBodyColor = QColor("#484A4B");
QColor outputHighBodyColor = QColor("#3C5E62");