diff --git a/src/mode/CountDown/CountDown.h b/src/mode/CountDown/CountDown.h index c2e3621..6f66e05 100644 --- a/src/mode/CountDown/CountDown.h +++ b/src/mode/CountDown/CountDown.h @@ -116,7 +116,7 @@ private: void drawCountdownBars(Display &display, uint8_t hours, uint8_t minutes, uint8_t seconds) { drawBar(display, 0, 0, 24, 1, 0, 24, hours, RED, MAGENTA, 0); drawBar(display, 0, 2, 30, 2, 0, 60, minutes, BLUE, VIOLET, 5); - drawBar(display, 0, 5, 30, 2, 0, 60, seconds, GREEN, TURQUOISE, 10); + drawBar(display, 0, 5, 30, 2, 0, 60, seconds, GREEN, YELLOW, 5); } void drawBar(Display &display, uint8_t _x, uint8_t _y, uint8_t _w, uint8_t _h, uint8_t min, uint8_t max, uint8_t value, const Color &color, const Color &tickColor, uint8_t ticks) {