-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.qss
More file actions
51 lines (44 loc) · 897 Bytes
/
style.qss
File metadata and controls
51 lines (44 loc) · 897 Bytes
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
QWidget {
background-color: #121212;
color: #ffffff;
font-family: 'Segoe UI', sans-serif;
font-size: 14px;
}
QPushButton {
background-color: #1f1f1f;
color: #ffffff;
border: 1px solid #333;
padding: 8px;
border-radius: 5px;
}
QPushButton:hover {
background-color: #333333;
}
QLabel#banner {
font-size: 32px;
font-weight: bold;
color: #00ffcc;
}
QTableWidget {
background-color: #1e1e1e;
gridline-color: #333;
selection-background-color: #00ffcc;
selection-color: #000000;
}
QHeaderView::section {
background-color: #2c2c2c;
color: #00ffcc;
padding: 6px;
border: none;
font-weight: bold;
font-size: 14px;
}
QTableWidget QTableCornerButton::section {
background-color: #2c2c2c;
border: none;
}
QStatusBar {
background-color: #1f1f1f;
color: #00ffcc;
border-top: 1px solid #333;
}