From 05fa135be662fd8d8772b5f8cb15818c67cf744d Mon Sep 17 00:00:00 2001 From: Dean Lee Date: Fri, 6 Jun 2025 01:13:44 +0800 Subject: [PATCH] ui: make the toggle color match QT (#35466) make the toggle color match QT --- system/ui/lib/toggle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/ui/lib/toggle.py b/system/ui/lib/toggle.py index 0128dca206..32b9ca5416 100644 --- a/system/ui/lib/toggle.py +++ b/system/ui/lib/toggle.py @@ -1,6 +1,6 @@ import pyray as rl -ON_COLOR = rl.Color(0, 255, 0, 255) +ON_COLOR = rl.Color(51, 171, 76, 255) OFF_COLOR = rl.Color(0x39, 0x39, 0x39, 255) KNOB_COLOR = rl.WHITE WIDTH, HEIGHT = 160, 80