Qt hitpointbar coloring

A couple of colors used by the Qt hitpointbar didn't look very good.
Switch to lighter green because the named value for that is too dark.
It was using the wrong value for orange; the right one isn't too dark
after all.
This commit is contained in:
PatR
2020-11-01 13:46:16 -08:00
parent 5b0ac4ceac
commit 90790d3aa4

View File

@@ -431,11 +431,12 @@ void NetHackQtStatusWindow::HitpointBar()
*barcolors[6][2] = {
{ "black", "black" }, // 100% /* second black never shown */
{ "blue", "darkBlue" }, //75..99
// gray is darker than darkGray for some reason (at least on OSX)...
// green and orange would look better if they were lighter/brighter
{ "green", "gray" }, //50..74
/* gray is darker than darkGray for some reason (at least on OSX);
default green is too dark compared to blue, yellow, orange,
and red so is changed here to green.lighter(150) */
{ "#00c000", "gray" }, //50..74 /* "green"=="#008000" */
{ "yellow", "darkGray" }, //25..49
{ "#ff7f00", "lightGray" }, //10..24 /* #ff7f00=="orange" */
{ "orange", "lightGray" }, //10..24
{ "red", "white" }, // 0..9
};