-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet-dev.css
143 lines (118 loc) · 2.33 KB
/
stylesheet-dev.css
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
142
143
* {
background: rgb(23, 29, 40);
color: rgb(112, 123, 148);
font-family: "Fira Sans";
}
#txtStyle {
font-family: "Courier New";
}
QPushButton {
background: rgb(38, 46, 60);
color: rgb(161, 170, 190);
border-radius: 4px;
padding: 0.5ex 2ex;
font-weight: bold;
}
QPushButton::hover {
background: rgb(85, 95, 112);
color: rgb(255, 255, 255);
}
QPushButton::pressed {
background: rgb(255, 217, 122);
color: rgb(19, 24, 32);
}
QPlainTextEdit, QLineEdit {
background: rgb(33, 40, 51);
color: rgb(139, 149, 161);
border: none;
padding: 1ex;
}
QScrollBar {
width: 4px;
background: rgb(42, 53, 65);
}
QScrollBar::add-page, QScrollBar::sub-page {
background: none;
}
QScrollBar::handle {
border: none;
background: rgb(85, 95, 112);
}
QScrollBar::add-line, QScrollBar::sub-line {
width: 0;
height: 0;
}
QCheckBox::hover, QRadioButton::hover {
color: rgb(255, 255, 255);
}
QCheckBox::indicator, QRadioButton::indicator {
background: rgb(38, 46, 60);
}
QCheckBox::indicator {
border-radius: 3px;
}
QRadioButton::indicator {
border-radius: 6px;
}
QCheckBox::indicator::hover, QRadioButton::indicator::hover {
background: rgb(85, 95, 112);
}
QCheckBox::indicator::checked, QRadioButton::indicator::checked {
border: 3px solid rgb(255, 217, 122);
background: white;
}
QComboBox {
background: rgb(38, 46, 60);
color: rgb(161, 170, 190);
border-radius: 3px;
}
QComboBox::on {
background: rgb(255, 198, 99);
color: rgb(19, 24, 32);
}
/*
QComboBox::drop-down::button {
border-radius: 3px;
}
QComboBox::down-arrow {
background: rgb(255, 255, 255);
width: 8px;
height: 8px;
border-radius: 4px;
}
*/
QComboBox QListView {
background: rgb(19, 24, 32);
border: 3px solid rgb(38, 46, 60);
padding: 0.5ex;
}
#clrTextDecoOn, #clrTextDecoOff {
background: rgb(38, 46, 60);
color: rgb(161, 170, 190);
border-radius: 3px;
padding: 0.5ex;
}
QSpinBox {
background: rgb(38, 46, 60);
color: rgb(161, 170, 190);
border-radius: 3px;
padding-left: 2px;
}
QTabWidget::pane {
border: 4px solid rgb(19, 24, 32);
}
QTabBar::tab {
background: rgb(19, 24, 32);
}
QTabBar::tab::hover, QTabBar::tab::selected {
background: rgb(255, 198, 99);
color: black;
}
/*
QTabWidget > QWidget > QWidget {
background: rgb(19, 24, 32);
}
QLabel, QCheckBox, QRadioButton {
background: rgb(19, 24, 32);
}
*/