Use true black (#000) for screen background

AMOLED pixels turn fully off, saving power and deepening contrast
against COL_PANEL (0x1f1f1e).
This commit is contained in:
Hermann Björgvin Haraldsson
2026-05-11 00:54:04 +00:00
parent 7fc8ed721a
commit b34d99def8
+1 -1
View File
@@ -14,7 +14,7 @@ LV_FONT_DECLARE(font_styrene_20);
LV_FONT_DECLARE(font_mono_32);
// Anthropic brand palette
#define COL_BG lv_color_hex(0x141413)
#define COL_BG lv_color_hex(0x000000)
#define COL_PANEL lv_color_hex(0x1f1f1e)
#define COL_TEXT lv_color_hex(0xfaf9f5)
#define COL_DIM lv_color_hex(0xb0aea5)