-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdark-theme.qss
More file actions
141 lines (120 loc) · 2.63 KB
/
Copy pathdark-theme.qss
File metadata and controls
141 lines (120 loc) · 2.63 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
QWidget {
background-color: #2E2E2E;
color: #FFFFFF;
font-size: 16px;
}
QLabel {
font-size: 16px;
color: #FFFFFF;
min-width:250px;
}
QLineEdit {
background-color: #424242;
color: #E0E0E0;
border: 1px solid #424242;
padding: 8px;
border-radius: 5px;
min-width: 200px;
}
QLineEdit:hover {
background-color: #5A5A5A;
}
QLineEdit:focus {
border: 1px solid #4A90E2;
outline: none;
}
QLineEdit[error="true"] {
border: 1px solid #E74C3C;
color: #E74C3C;
}
QPushButton {
font-size: 16px;
padding: 8px;
border-radius: 5px;
border: none;
}
QPushButton {
background-color: #2e86c1;
color: #FFFFFF;
}
QPushButton:hover {
background-color: #5A5A5A;
}
/* SpinBox Base Styling */
QSpinBox {
background-color: #5A5A5A;
color: #ffffff;
padding: 5px;
font-size: 16px;
border: 1px solid #555555;
border-radius: 4px;
width: 100px;
}
/* SpinBox Hover State */
QSpinBox:hover {
border: 1px solid #777777;
}
/* SpinBox Focused State */
QSpinBox:focus {
border: 1px solid #3498db; /* Blue outline on focus */
}
/* SpinBox Up and Down Buttons */
QSpinBox::up-button, QSpinBox::down-button {
background-color: #444444;
width: 20px;
border: none;
border-radius: 3px;
}
QSpinBox::up-button:hover, QSpinBox::down-button:hover {
background-color: #555555;
}
QSpinBox::up-button:pressed, QSpinBox::down-button:pressed {
background-color: #2e86c1; /* Darker blue on press */
}
/* ComboBox Base Styling */
QComboBox {
background-color: #333333;
color: #ffffff;
padding: 5px 10px;
font-size: 16px;
border: 1px solid #555555;
border-radius: 4px;
}
QComboBox#file_format_combo{
min-width: 350px;
}
/* ComboBox Hover State */
QComboBox:hover {
border: 1px solid #777777;
}
/* ComboBox Focused State */
QComboBox:focus {
border: 1px solid #3498db; /* Blue outline on focus */
}
/* Drop-down Arrow Styling */
QComboBox::drop-down {
width: 30px;
border-left: 1px solid #555555;
background-color: #444444;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
QComboBox::down-arrow {
image: url(./assets/arrow-down-icon.png); /* Path to custom down arrow icon */
width: 8px;
height: 8px;
}
/* ComboBox Popup Styling (when expanded) */
QComboBox QAbstractItemView {
background-color: #333333;
border: 1px solid #555555;
color: #ffffff;
selection-background-color: #555555;
selection-color: #ffffff;
}
/* ComboBox Disabled State */
QComboBox:disabled {
background-color: #222222;
color: #777777;
border: 1px solid #444444;
}