change idle colors

This commit is contained in:
Patrick Moessler 2023-06-12 12:20:13 +02:00
parent a6b2992cc2
commit 8311416253

View file

@ -18,10 +18,10 @@ class Button(BaseModel):
class BUTTONS:
cam = Button(num=0, color_off=(0, 0, 10), color_on=(0, 0, 255))
mic = Button(num=1, color_off=(10, 0, 0), color_on=(255, 0, 0))
hand = Button(num=2, color_off=(10, 10, 0), color_on=(255, 192, 0))
call = Button(num=3, color_off=(0, 10, 0), color_on=(255, 64, 0))
cam = Button(num=0, color_off=(0, 0, 30), color_on=(0, 0, 255))
mic = Button(num=1, color_off=(30, 0, 0), color_on=(255, 0, 0))
hand = Button(num=2, color_off=(30, 10, 0), color_on=(255, 192, 0))
call = Button(num=3, color_off=(0, 30, 0), color_on=(255, 64, 0))
all = [cam, mic, hand, call]