-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.py
105 lines (98 loc) · 2.54 KB
/
styles.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
styles = {
'darkgreen': {
'name': 'darkgreen',
'background': '#000000',
'foreground': '#007700',
'lines': '#001100',
'border': '#001100',
'info': '#007700',
'font': 'DejaVu Sans Mono',
'fontsize': 12,
'padding': 6,
'size': [0.6, 0.95],
},
'green': {
'name': 'green',
'background': '#000000',
'foreground': '#00ff00',
'lines': '#007700',
'border': '#003300',
'info': '#00ff00',
'font': 'DejaVu Sans Mono',
'fontsize': 12,
'padding': 6,
'size': [0.6, 0.95],
},
'blue': {
'name': 'blue',
'background': '#0000ff',
'foreground': '#ffffff',
'lines': '#5555ff',
'border': '#3333ff',
'info': '#ffffff',
'font': 'DejaVu Sans Mono',
'fontsize': 12,
'padding': 6,
'size': [0.6, 0.95],
},
'c64': {
'name': 'c64',
'background': '#10009c',
'foreground': '#9c9cff',
'lines': '#3b3bbd',
'border': '#3b3bbd',
'info': '#7373ff',
'font': 'DejaVu Sans Mono',
'fontsize': 12,
'padding': 8,
'size': [0.45, 0.75] # [width, height]
},
'locontrast': {
'name': 'locontrast',
'background': '#6f6f6f',
'foreground': '#212121',
'lines': '#2f455b',
'border': '#2f455b',
'info': '#C44700',
'font': 'DejaVu Sans Mono',
'fontsize': 9,
'padding': 8,
'size': [0.45, 0.75] # [width, height]
},
'cupid': {
'name': 'cupid',
'background': '#12000b',
'foreground': '#d68c8b',
'lines': '#733b44',
'border': '#733b44',
'info': '#deb8a6',
'font': 'DejaVu Sans Mono',
'fontsize': 9,
'padding': 8,
'size': [0.45, 0.75] # [width, height]
},
'banker': {
'name': 'banker',
'background': '#111d00',
'foreground': '#ded291',
'lines': '#7d9635',
'border': '#7d9635',
'info': '#7d9635',
'font': 'DejaVu Sans Mono',
'fontsize': 9,
'padding': 8,
'size': [0.45, 0.75] # [width, height]
},
'amber': {
'name': 'amber',
'background': '#151000',
'foreground': '#ae8400',
'lines': '#5e4803',
'border': '#5e4803',
'info': '#ae8400',
'font': 'DejaVu Sans Mono',
'fontsize': 9,
'padding': 8,
'size': [0.45, 0.75] # [width, height]
},
}