More tweaks to Insight colours
This commit is contained in:
@@ -57,7 +57,7 @@ void BitBodyWidget::paintEvent(QPaintEvent* event) {
|
|||||||
void BitBodyWidget::drawWidget(QPainter& painter) {
|
void BitBodyWidget::drawWidget(QPainter& painter) {
|
||||||
painter.setRenderHints(QPainter::RenderHint::Antialiasing | QPainter::RenderHint::SmoothPixmapTransform, true);
|
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()) {
|
if (!this->isEnabled()) {
|
||||||
bodyColor.setAlpha(100);
|
bodyColor.setAlpha(100);
|
||||||
|
|||||||
@@ -23,9 +23,9 @@
|
|||||||
borderopacity="1.0"
|
borderopacity="1.0"
|
||||||
inkscape:pageopacity="0"
|
inkscape:pageopacity="0"
|
||||||
inkscape:pageshadow="2"
|
inkscape:pageshadow="2"
|
||||||
inkscape:zoom="5.6"
|
inkscape:zoom="11.2"
|
||||||
inkscape:cx="13.920574"
|
inkscape:cx="74.919115"
|
||||||
inkscape:cy="10.048712"
|
inkscape:cy="39.986431"
|
||||||
inkscape:document-units="px"
|
inkscape:document-units="px"
|
||||||
inkscape:current-layer="layer1"
|
inkscape:current-layer="layer1"
|
||||||
inkscape:document-rotation="0"
|
inkscape:document-rotation="0"
|
||||||
@@ -60,42 +60,42 @@
|
|||||||
id="layer1"
|
id="layer1"
|
||||||
transform="translate(1.3229167,1.0583334)">
|
transform="translate(1.3229167,1.0583334)">
|
||||||
<rect
|
<rect
|
||||||
style="fill:#7b5f31;fill-opacity:1;stroke-width:0.318943"
|
style="fill:#7b5e38;fill-opacity:1;stroke-width:0.318943"
|
||||||
id="rect1537"
|
id="rect1537"
|
||||||
width="6.6145835"
|
width="6.6145835"
|
||||||
height="3.175"
|
height="3.175"
|
||||||
x="0.26458332"
|
x="0.26458332"
|
||||||
y="0.52916664" />
|
y="0.52916664" />
|
||||||
<rect
|
<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"
|
id="rect1537-5"
|
||||||
width="6.6145835"
|
width="6.6145835"
|
||||||
height="3.175"
|
height="3.175"
|
||||||
x="7.6729169"
|
x="7.6729169"
|
||||||
y="0.52916664" />
|
y="0.52916664" />
|
||||||
<rect
|
<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"
|
id="rect1537-6"
|
||||||
width="6.6145835"
|
width="6.6145835"
|
||||||
height="3.175"
|
height="3.175"
|
||||||
x="0.26458332"
|
x="0.26458332"
|
||||||
y="4.4979167" />
|
y="4.4979167" />
|
||||||
<rect
|
<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"
|
id="rect1537-5-2"
|
||||||
width="6.6145825"
|
width="6.6145825"
|
||||||
height="3.175"
|
height="3.175"
|
||||||
x="7.6729178"
|
x="7.6729178"
|
||||||
y="4.4979167" />
|
y="4.4979167" />
|
||||||
<rect
|
<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"
|
id="rect1537-6-9"
|
||||||
width="6.6145835"
|
width="6.6145835"
|
||||||
height="3.175"
|
height="3.175"
|
||||||
x="0.26458332"
|
x="0.26458332"
|
||||||
y="8.4666672" />
|
y="8.4666672" />
|
||||||
<rect
|
<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"
|
id="rect1537-5-2-1"
|
||||||
width="6.6145825"
|
width="6.6145825"
|
||||||
height="3.175"
|
height="3.175"
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -12,7 +12,7 @@ namespace Bloom::Widgets::InsightTargetWidgets::Dip
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
// These properties can be modified via Qt style sheets (see Stylesheets/DualInlinePackage.qss)
|
// These properties can be modified via Qt style sheets (see Stylesheets/DualInlinePackage.qss)
|
||||||
QColor bodyColor = QColor("#908D85");
|
QColor bodyColor = QColor("#8E8B83");
|
||||||
int disableAlphaLevel = 100;
|
int disableAlphaLevel = 100;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ namespace Bloom::Widgets::InsightTargetWidgets::Qfp
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
// These properties can be modified via Qt style sheets (see Stylesheets/QuadFlatPackage.qss)
|
// These properties can be modified via Qt style sheets (see Stylesheets/QuadFlatPackage.qss)
|
||||||
QColor bodyColor = QColor("#908D85");
|
QColor bodyColor = QColor("#8E8B83");
|
||||||
int disableAlphaLevel = 100;
|
int disableAlphaLevel = 100;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ namespace Bloom::Widgets::InsightTargetWidgets
|
|||||||
|
|
||||||
bool hoverActive = false;
|
bool hoverActive = false;
|
||||||
|
|
||||||
QColor defaultBodyColor = QColor("#83817B");
|
QColor defaultBodyColor = QColor("#908D85");
|
||||||
QColor vccBodyColor = QColor("#70383A");
|
QColor vccBodyColor = QColor("#70383A");
|
||||||
QColor gndBodyColor = QColor("#484A4B");
|
QColor gndBodyColor = QColor("#484A4B");
|
||||||
QColor outputHighBodyColor = QColor("#3C5E62");
|
QColor outputHighBodyColor = QColor("#3C5E62");
|
||||||
|
|||||||
Reference in New Issue
Block a user