This repository has been archived by the owner on May 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathGreenery.css
191 lines (158 loc) · 3.37 KB
/
Greenery.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/*
Skin: Greenery
PantoneCode: 15-0343 (13-0220 12-0525)
Author: Yuriko
Create date: 2018/10/10
Update date: 2018/10/31
清新活力之色,草木绿是新生的象徵
草木绿是一个代表初春时节万物复苏、欣欣向荣的颜色,清新而充满活力,如同身处于繁茂的绿植之中,让人情不自禁地开始深呼吸,感受新鲜空气,振作精神。
草木绿,一个俱生命力、令人愉悦的颜色,也像徵著个人对热情和活力的追求。
*/
QWidget {
font-weight: bold;
font-size: 16px;
background: rgb(136, 176, 75);
color: rgb(105, 45, 93);
}
QWidget:disabled {
background: transparent;
color: #6F6F6F;
}
QToolButton {
font-size: 20px;
color: rgb(105, 45, 93);
}
QToolButton:hover {
background: rgb(39, 156, 24);
}
QPushButton {
background: rgb(178, 231, 159);
border: 1px solid #000;
border-radius: 2px;
color: rgb(105, 45, 93);
min-width: 76px;
min-height: 17px;
padding: 4px 6px;
}
QPushButton:focus {
border: 1px solid rgb(178, 231, 159);
outline: none;
}
QPushButton:pressed {
background: rgb(227, 234, 165);
}
QPushButton[flat="true"] {
background: none;
border: 0px;
border-radius: 0px;
color: none;
min-width: 0px;
min-height: 0px;
}
QPushButton#pushButton_previous,
QPushButton#pushButton_playing,
QPushButton#pushButton_next {
min-width: 50px;
min-height: 50px;
}
QSlider::groove:horizontal {
background: rgb(227, 234, 165);
height: 1px;
}
QSlider::sub-page:horizontal {
background: rgb(178, 231, 159);
}
QSlider::handle:horizontal {
background: whitesmoke;
border: 2px solid #1A1A1A;
border-radius: 7px;
margin: -7px 0;
width: 12px;
}
QCheckBox::indicator {
width: 11px;
height: 11px;
border: 1px solid rgb(178, 231, 159);
border-radius: 2px;
}
QCheckBox::indicator:unchecked {
border: 1px solid rgb(105, 45, 93);
background: rgb(227, 234, 165);
image: none;
}
QCheckBox::indicator:checked {
border: 1px solid rgb(178, 231, 159);
background: rgb(178, 231, 159);
image: url(:/icons/checked.svg);
}
QLineEdit {
background: rgb(227, 234, 165);
border: 1px solid #454A4D;
padding: 2px;
}
QLineEdit:focus {
border: 1px solid rgb(178, 231, 159);
}
QComboBox {
background: rgb(227, 234, 165);
border: 1px solid #000;
border-radius: 2px;
padding: 2px;
}
QComboBox:focus {
border: 1px solid rgb(178, 231, 159);
}
QComboBox::drop-down {
background: rgb(178, 231, 159);
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
}
QComboBox::down-arrow {
image: url(:/icons/down-arrow.svg);
}
QGroupBox {
border: 1px solid #454A4D;
border-radius: 2px;
margin-top: 0.5em;
}
QGroupBox::title {
subcontrol-origin: margin;
subcontrol-position: top center;
background: rgb(227, 234, 165);
border: 1px solid #454A4D;
border-radius: 2px;
padding: 0 2px;
}
QRadioButton::indicator {
width: 6px;
height: 6px;
border-radius: 5px;
padding: 2px;
}
QRadioButton::indicator:unchecked {
border: 1px solid whitesmoke;
image: none;
}
QRadioButton::indicator:checked {
border: 1px solid rgb(178, 231, 159);
image: url(:/icons/selected.svg);
}
QSpinBox {
background: rgb(227, 234, 165);
border: 1px solid #000;
border-radius: 2px;
padding: 2px;
}
QSpinBox:focus {
border: 1px solid rgb(178, 231, 159);
}
QSpinBox::up-button, QSpinBox::down-button {
border: none;
width: 10px;
}
QSpinBox::up-arrow {
image: url(:/icons/up-arrow.svg);
}
QSpinBox::down-arrow {
image: url(:/icons/down-arrow.svg);
}