change idle colors
This commit is contained in:
parent
a6b2992cc2
commit
8311416253
1 changed files with 4 additions and 4 deletions
|
@ -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]
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue