Update tasmota_globals.h - WebColor consistency (#24833)

Noticed a small inconsistency of the default light WebColor palette not fully matching the light palette example in my_user_config.h and the docs WebUI page. The color for COLOR_BUTTON_OFF was a long time ago changed from dark blue #08405e to the better-working pale blue #a1d9f7 without this being reflected in the defaults used in the absence of another #define value.

Of course, this normally makes no difference as the standard my_user_config.h defines a full dark palette anyway, but still....
This commit is contained in:
sfromis
2026-06-13 14:10:47 +02:00
committed by GitHub
parent c4b01cc013
commit 07493b4e69
+1 -1
View File
@@ -493,7 +493,7 @@ const char WIFI_HOSTNAME[] = WIFI_DEFAULT_HOSTNAME; // Override by user_confi
#define COLOR_TITLE_TEXT COLOR_TEXT // Title text color defaults to global text color either dark or light
#endif
#ifndef COLOR_BUTTON_OFF
#define COLOR_BUTTON_OFF "#08405e" // Button color when off - Darkest blueish
#define COLOR_BUTTON_OFF "#a1d9f7" // Button color when off - Light blue
#endif
enum WebColors {