diff --git a/apps/clicompleteclk/app.js b/apps/clicompleteclk/app.js index f473d440b..a39b37e58 100644 --- a/apps/clicompleteclk/app.js +++ b/apps/clicompleteclk/app.js @@ -90,7 +90,7 @@ function drawInfo(now) { if (showBattery) { writeLineTopic("BATT", i); const b = E.getBattery(); - writeLine(b + "%", i, b > batteryWarnLevel ? textColor : textColorRed); + writeLine(b + "%", i, b < batteryWarnLevel ? textColorRed : textColor); i++; }