-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.qss
More file actions
124 lines (105 loc) · 2.13 KB
/
style.qss
File metadata and controls
124 lines (105 loc) · 2.13 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
/*
* ChiselPDF Dark Theme
*
* Color Palette:
* - Background: #2b2b2b (dark gray)
* - Secondary background: #3c3c3c (medium gray)
* - Border: #555555 (light gray)
* - Text primary: #ffffff (white)
* - Text secondary: #aaaaaa (light gray)
* - Text inactive: #888888 (medium gray)
* - Accent (normal): #1b75d0 (blue)
* - Accent (hover): #155ca1 (darker blue)
* - Accent (pressed): #0c3b6a (darkest blue)
* - Success: #4caf50 (green)
* - Error: #f44336 (red)
*/
/* Base Application Styles */
QMainWindow, QWidget {
background-color: #2b2b2b;
color: #ffffff;
}
/* Group Boxes */
QGroupBox {
border: 1px solid #555555;
border-radius: 5px;
margin-top: 10px;
padding-top: 10px;
font-weight: bold;
}
QGroupBox::title {
subcontrol-origin: margin;
left: 10px;
padding: 0 5px;
}
/* Text Input Fields */
QLineEdit {
background-color: #3c3c3c;
color: #ffffff;
border: 1px solid #555555;
border-radius: 3px;
padding: 5px;
}
/* Buttons */
QPushButton {
background-color: #1b75d0;
color: #ffffff;
border: none;
border-radius: 3px;
padding: 8px;
font-weight: bold;
}
QPushButton:hover {
background-color: #155ca1;
}
QPushButton:pressed {
background-color: #0c3b6a;
}
QPushButton:disabled {
background-color: #555555;
color: #888888;
}
/* Radio Buttons */
QRadioButton::indicator {
width: 14px;
height: 14px;
border-radius: 9px;
background-color: #555555;
border: 2px solid #555555;
}
QRadioButton::indicator:checked {
background-color: #1b75d0;
}
QRadioButton::indicator:hover {
border: 2px solid #155ca1;
}
/* Labels - Dynamic States */
QLabel[labelState="inactive"] {
color: #888888;
padding: 5px;
}
QLabel[labelState="active"] {
color: #ffffff;
padding: 5px;
}
QLabel[labelState="info"] {
color: #aaaaaa;
}
QLabel[labelState="processing"] {
color: #aaaaaa;
}
QLabel[labelState="success"] {
color: #4caf50;
}
QLabel[labelState="error"] {
color: #f44336;
}
/* Specific UI Elements */
#pageInfoLabel {
color: #aaaaaa;
font-size: 10pt;
}
#helpLabel {
color: #aaaaaa;
font-size: 9pt;
}