Logic Machine Forum
Gauge Color - Printable Version

+- Logic Machine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: Visualization (https://forum.logicmachine.net/forumdisplay.php?fid=9)
+--- Thread: Gauge Color (/showthread.php?tid=4255)



Gauge Color - jmir - 21.09.2022

Hi,

Is it possible to use white gauges when visualitzation is set to dark-theme?

Thanks.


RE: Gauge Color - Daniel - 21.09.2022

Yes, why not?


RE: Gauge Color - jmir - 21.09.2022

(21.09.2022, 13:45)Daniel Wrote: Yes, why not?

How?


RE: Gauge Color - admin - 21.09.2022

Gauge color scheme is fixed. A work-around is to invert colors using CSS filter and additional class gauge-invert:
Code:
.gauge-invert {
  filter: invert(100%) hue-rotate(180deg) contrast(150%);
}



RE: Gauge Color - jmir - 21.09.2022

(21.09.2022, 14:43)admin Wrote: Gauge color scheme is fixed. A work-around is to invert colors using CSS filter and additional class gauge-invert:
Code:
.gauge-invert {
  filter: invert(100%) hue-rotate(180deg) contrast(150%);
}

Ok thanks!