diff --git a/data/skins/default/sheet.png b/data/skins/default/sheet.png index b5da4d71e..57962f298 100644 Binary files a/data/skins/default/sheet.png and b/data/skins/default/sheet.png differ diff --git a/src/app/ui/color_spectrum.cpp b/src/app/ui/color_spectrum.cpp index d6ff1ea90..2e59bd3c5 100644 --- a/src/app/ui/color_spectrum.cpp +++ b/src/app/ui/color_spectrum.cpp @@ -139,9 +139,11 @@ void ColorSpectrum::onPaint(ui::PaintEvent& ev) rc.y + rc.h - (lit * rc.h / 100)); she::Surface* icon = theme->parts.colorWheelIndicator()->bitmap(0); - g->drawRgbaSurface(icon, - pos.x-icon->width()/2, - pos.y-icon->height()/2); + g->drawColoredRgbaSurface( + icon, + lit > 50 ? gfx::rgba(0, 0, 0): gfx::rgba(255, 255, 255), + pos.x-icon->width()/2, + pos.y-icon->height()/2); } }