ui: fix button label color (#37031)

label color
This commit is contained in:
Shane Smiskol
2026-01-27 15:40:09 -08:00
committed by GitHub
parent 97329e46ae
commit 93015c1c17
+1 -1
View File
@@ -16,7 +16,7 @@ except ImportError:
SCROLLING_SPEED_PX_S = 50
COMPLICATION_SIZE = 36
LABEL_COLOR = rl.WHITE
LABEL_COLOR = rl.Color(255, 255, 255, int(255 * 0.9))
LABEL_HORIZONTAL_PADDING = 40
COMPLICATION_GREY = rl.Color(0xAA, 0xAA, 0xAA, 255)
PRESSED_SCALE = 1.15 if DO_ZOOM else 1.07