-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.py
121 lines (101 loc) · 1.83 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
DARK_STYLE = """
QWidget {
background-color: #313338;
color: #DDD;
}
QSpinBox {
background-color: #555;
border: 1px solid #666;
width: 30px;
height: 1.5em;
}
QSpinBox::up-button, QSpinBox::down-button {
background-color: #444;
color: white;
padding: 5px;
}
QLabel {
color: #DDD;
font-size: 1em;
}
QSlider::groove:horizontal {
height: 1.0em;
margin: 0 0;
}
QSlider::handle:horizontal {
border: 2px solid white;
width: 0.8em;
margin: -2px 0;
}
QPushButton {
padding: 5px 15px; /* Adjust as needed */
background-color: #555555;
border: none;
}
QPushButton#CloseButton {
background-color: transparent;
border: none;
color: white;
}
QPushButton#CloseButton:hover {
background-color: #ef5858;
color: white;
}
QPushButton#ArrowButton {
background-color: transparent;
border: none;
color: white;
}
QPushButton#FormatLabel {
background-color: transparent;
border: none;
text-align: left;
padding-left: 0px;
padding-bottom: 0px;
width: 30px;
margin-bottom: 0px;
margin-top: 0px;
padding-top: 0px;
}
QPushButton#ArrowButton:hover {
background-color: #23a557;
color: white;
}
QWidget#TopBar {
background-color: #1e1f22;
}
QLabel#TitleText {
color: white;
background-color: transparent;
}
QDialog#TransparentOverlay {
background: transparent;
}
/* QMenu Styling */
QMenu {
background-color: #313338;
color: #DDD;
border: 1px solid #444;
padding: 5px;
}
QMenu::item {
background-color: transparent;
padding: 5px 20px;
}
QMenu::item:selected {
background-color: #444;
color: #DDD;
}
QMenu::separator {
background-color: #555;
height: 1px;
margin: 5px 0;
}
QLineEdit {
border: 1px solid gray;
padding: 4px;
}
QMenu::icon {
padding: 5px;
}
"""