-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy paththemes.py
More file actions
55 lines (49 loc) · 1.61 KB
/
themes.py
File metadata and controls
55 lines (49 loc) · 1.61 KB
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
class DarkTheme:
def __init__(self):
self.gradient_top = "#000000"
self.bgcolor = "#333333"
self.textcolor = "#DDDDDD"
self.divborder = "#000000"
self.poster = "#888888"
self.postbg = "#444444"
self.posthilight = "#222222"
self.link = "#ADD8E6"
self.linkhilight = "#AAAAAA"
self.themedtext = "#BC8863"
self.subject = "#AAAAAA"
self.formbg = "#444444"
self.greentext = "#789922"
self.greytext = "#707070"
class ClassicTheme:
def __init__(self):
self.gradient_top = "#FFD6AC"
self.bgcolor = "#FFFFED"
self.textcolor = "#820000"
self.divborder = "#D9BFB7"
self.poster = "#047841"
self.postbg = "#F0E0D6"
self.posthilight = "#F1C0AF"
self.link = "#000082"
self.linkhilight = "#CE0B00"
self.themedtext = "#BC8863"
self.subject = "#CE0B00"
self.formbg = "#EA8"
self.greentext = "#789922"
self.greytext = "#707070"
class BlueTheme:
def __init__(self):
self.gradient_top = "#D1D5EF"
self.bgcolor = "#EEF2FF"
self.textcolor = "#000000"
self.divborder = "#B7C5DA"
self.poster = "#047841"
self.postbg = "#D6DAF1"
self.posthilight = "#D7C9D1"
self.link = "#2F2C9C"
self.linkhilight = "#0E065F"
self.themedtext = "#BC8863"
self.subject = "#0E065F"
self.formbg = "#9985F1"
self.greentext = "#789922"
self.greytext = "#707070"
themes = {"Dark": DarkTheme(), "Classic": ClassicTheme(), "Frosty": BlueTheme()}