-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTheme.py
52 lines (49 loc) · 1.01 KB
/
Theme.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
class Theme:
simple_style_sheet="""
QLabel {
font: 14pt
}
QListWidget {
font: 14pt
}
QPushButton {
font-size: 14pt;
}
QPushButton:hover {
color: darkgray;
}
"""
force_dark_mode="""
background-color: #393939;
color: white;
font: 14pt;
font-size: 14pt;
QLabel {
font: 14pt;
}
QPushButton {
font-size: 14pt;
}
QPushButton:hover {
color: darkgray;
}
"""
force_dark_mode_list="""
QMenuBar {
background-color: #303030;
font-size: 10pt;
}
QMenu {
background-color: #303030;
font-size: 10pt;
}
QMenu::item:disabled {
color: gray
}
QMenu:selected {
background-color: #242424;
}
QListView {
background-color: #303030;
}
"""