-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuser.py
86 lines (86 loc) · 2.38 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
USER_THEMES = {
"spmain": {
"type": "dark",
"colors": {
"primary": "#ff0000",
"secondary": "#b70000",
"success": "#e60000",
"info": "#ff5155",
"warning": "#820000",
"danger": "#790000",
"light": "#6c6c6c",
"dark": "#373535",
"bg": "#2a2a2a",
"fg": "#e0e0e0",
"selectbg": "#b30000",
"selectfg": "#ffffff",
"border": "#444444",
"inputfg": "#b0b0b0",
"inputbg": "#333333",
"active": "#ff1c1c"
}
},
"newtheme": {
"type": "dark",
"colors": {
"primary": "#d90000",
"secondary": "#b70000",
"success": "#ff2d2d",
"info": "#ff5155",
"warning": "#820000",
"danger": "#790000",
"light": "#6c6c6c",
"dark": "#373535",
"bg": "#0f0f0f",
"fg": "#ffffff",
"selectbg": "#661a1a",
"selectfg": "#ffffff",
"border": "#dd0000",
"inputfg": "#ebebeb",
"inputbg": "#202020",
"active": "#ff1c1c"
}
},
"spmain2": {
"type": "dark",
"colors": {
"primary": "#d13232",
"secondary": "#853232",
"success": "#cc1a1a",
"info": "#ff5155",
"warning": "#b42525",
"danger": "#ff6262",
"light": "#ff9191",
"dark": "#442522",
"bg": "#533738",
"fg": "#e0e0e0",
"selectbg": "#a64a4a",
"selectfg": "#ffffff",
"border": "#363636",
"inputfg": "#b0b0b0",
"inputbg": "#69494d",
"active": "#000000"
}
},
"spmain3": {
"type": "dark",
"colors": {
"primary": "#ff4d4d",
"secondary": "#b70000",
"success": "#e60000",
"info": "#ff5155",
"warning": "#820000",
"danger": "#790000",
"light": "#6c6c6c",
"dark": "#373535",
"bg": "#2a1a1a",
"fg": "#f0e0e0",
"selectbg": "#993333",
"selectfg": "#ffffff",
"border": "#444444",
"inputfg": "#d0b0b0",
"inputbg": "#331b1b",
"active": "#993333"
}
}
}