This repository was archived by the owner on May 6, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.qss
More file actions
102 lines (88 loc) · 1.72 KB
/
style.qss
File metadata and controls
102 lines (88 loc) · 1.72 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
/* General widget font and color setup */
* {
font-family: "Segoe UI", sans-serif;
font-size: 12pt;
color: #2e2e2e;
}
/* Main Window styling */
QWidget {
background-color: #f0f0f0;
}
/* GroupBox styling */
QGroupBox {
border: 2px solid #db5e51;
border-radius: 5px;
margin-top: 1ex;
font-weight: bold;
font-size: 12pt;
}
QGroupBox::title {
subcontrol-origin: margin;
left: 10px;
color: #a12b47;
}
/* Button styling */
QPushButton {
background-color: #c43562;
color: white;
border-radius: 5px;
padding: 5px;
}
QPushButton:hover {
background-color: #b22e56;
}
QPushButton:pressed {
background-color: #8f1f3e;
}
/* Line Edit styling */
QLineEdit {
padding: 5px;
background-color: #ffffff;
border: 1px solid #ccc;
border-radius: 3px;
}
/* Spin Box and Double Spin Box styling */
QSpinBox, QDoubleSpinBox {
padding: 5px;
border: 1px solid #ccc;
border-radius: 3px;
background-color: #fff;
}
QSpinBox::up-button, QDoubleSpinBox::up-button {
width: 22px;
height: 18px;
}
QSpinBox::down-button, QDoubleSpinBox::down-button {
width: 22px;
height: 18px;
}
/* Combo Box styling */
QComboBox {
padding: 5px;
border: 1px solid #ccc;
border-radius: 3px;
background-color: #fff;
}
QPlainTextEdit {
background-color: #1e1e1e;
color: #d4d4d4;
border: 1px solid #3e3e3e;
selection-background-color: #264f78;
font-family: "Consolas", "Courier New", monospace;
font-size: 8pt;
}
QCheckBox {
spacing: 5px;
}
QCheckBox::indicator {
width: 16px;
height: 16px;
}
/* Tooltip styling */
QToolTip {
background-color: white;
color: #2e2e2e;
border: 1px solid #ccc;
border-radius: 3px;
padding: 5px;
}