-
Notifications
You must be signed in to change notification settings - Fork 1
/
user.py
30 lines (30 loc) · 855 Bytes
/
user.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# user.py
USER_THEMES = {
"nightcity": {
"type": "dark",
"colors": {
"primary": "#ff8000",
"secondary": "#ff0080",
"success": "#3af180",
"info": "#cd0532",
"warning": "#ffbd05",
"danger": "#1e00e0",
"light": "#cd0532",
"dark": "#1e00e0",
"bg": "#190831",
"fg": "#00ff00",
"selectbg": "#461a8a",
"selectfg": "#cd0532",
"border": "#cd0532",
"inputfg": "#f0d61c",
"inputbg": "#400080",
"active": "#cd0532",
"zune": "#1e00e0",
"royal-blue": "#4169E1",
"vermillion": "#FF4500",
"forest-green": "#228B22",
"pale-yellow": "#FFFFE0",
"bubblegum-pink": "#FF69B4"
}
}
}