scale of the thermometer

Hi, could you tell me where it is set so that the scale of the thermometer goes blank
Thank you


sshot-4.png

sshot-5.png

You are using the Bashewa mods to my thermometer.php script. In his script there is

// TICK COLORS     :
// -----------------
//     black #000000
//     white #FFFFFF
//       red #FF0000
//     green #008000
//      blue #0000FF
//    yellow #FFFF00
//   fuchsia #FF00FF
//    orange #FFA500
// lightgrey #D3D3D3
//  darkgrey #A9A9A9
//   dimgray #696969
// -----------------
$tickColor    =  '#D3D3D3'; // color for tick marks and UOM
$tickMaxColor =  '#FF0000'; // color for max temp text
$tickMinColor =  '#008000'; // color for min temp text

which allows you to set the tick mark colors. Is that what you wanted?

Hello Ken
I use the Saratoga thermometer
Bashewa’s is not configured for Cumulus and I do not know if you can
I have marked in red what I want to change


sshot-4.png

sshot-5.png

So you want to change to white lettering/scale/ticks … if so, then on thermometer.php 1.07 - 02-Apr-2011 change:

if (preg_match('|black|i',$CSSstyle) ) {
	$invertColor = true; 
}

to

if (true or preg_match('|black|i',$CSSstyle) ) {
	$invertColor = true; 
}

and that will force it to display white letters/scale/ticks

thank you very much :smiley: