Manager: brighten colors in disk/stats views

This commit is contained in:
David Anderson 2014-08-25 06:01:47 -07:00
parent 861042c00f
commit 3b60fa1679
1 changed files with 1 additions and 1 deletions

View File

@ -2626,7 +2626,7 @@ static void hsv2rgb(
void color_cycle(int i, int n, wxColour& color) {
double h = (double)i/(double)n;
double r, g, b;
double v = .6;
double v = .7;
if (n > 6) v = .5 + (i % 3)*.125;
// cycle through 3 different brightnesses
hsv2rgb(h*6, .5, v, r, g, b);