-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.qss
More file actions
117 lines (100 loc) · 2.07 KB
/
Copy pathstyle.qss
File metadata and controls
117 lines (100 loc) · 2.07 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
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
/* ---------- BASE ---------- */
QWidget {
background-color: #202225;
color: #f2f3f5;
font-family: "Segoe UI";
font-size: 14px;
}
/* Labels */
QLabel {
color: #f2f3f5;
font-size: 14px;
}
/* ---------- INPUTS ---------- */
QLineEdit, QTextEdit {
background-color: #2f3136;
color: #f2f3f5;
border: 1px solid #3a3c43;
border-radius: 6px;
padding: 6px;
}
QLineEdit:focus, QTextEdit:focus {
border: 1px solid #5865f2; /* soft highlight */
background-color: #34363c;
}
/* ---------- BUTTONS ---------- */
QPushButton {
background-color: #5865f2;
color: white;
padding: 8px 12px;
border-radius: 6px;
border: none;
}
QPushButton:hover {
background-color: #4752c4;
}
QPushButton:pressed {
background-color: #3c43a4;
}
/* Secondary buttons (optional) */
QPushButton#secondary {
background-color: #2f3136;
border: 1px solid #3a3c43;
}
QPushButton#secondary:hover {
background-color: #3a3c43;
}
/* ---------- COMBOBOX ---------- */
QComboBox {
background-color: #2f3136;
color: #f2f3f5;
border: 1px solid #3a3c43;
padding: 6px;
border-radius: 6px;
}
QComboBox:hover {
border: 1px solid #5865f2;
}
/* Combo dropdown */
QComboBox QAbstractItemView {
background-color: #2f3136;
border: 1px solid #3a3c43;
selection-background-color: #5865f2;
color: #f2f3f5;
}
/* ---------- TABLES ---------- */
QTableWidget {
background-color: #2f3136;
gridline-color: #3a3c43;
border: 1px solid #3a3c43;
border-radius: 6px;
}
QHeaderView::section {
background-color: #202225;
color: #f2f3f5;
padding: 6px;
border: none;
}
QTableWidget::item {
padding: 6px;
}
/* ---------- SCROLLBARS ---------- */
QScrollBar:vertical {
background: #202225;
width: 10px;
}
QScrollBar::handle:vertical {
background: #4a4c52;
border-radius: 4px;
}
QScrollBar::handle:vertical:hover {
background: #5865f2;
}
QScrollBar:horizontal {
background: #202225;
height: 10px;
}
QScrollBar::handle:horizontal {
background: #4a4c52;
border-radius: 4px;
}