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
|
QWidget {
background-color: rgb(30,30,30);
color: rgb(120,120,120);
}
QToolBar QToolButton {
background-color: rgb(50,50,50);
border-color: rgb(70,70,70);
border-style: outset;
border-width: 1px;
border-radius: 3px;
padding: 1px;
}
QAction {
background-color: rgb(150,150,150);
spacing: 3px;
padding: 1px 4px;
background: transparent;
border-radius: 4px;
}
QMenu::item:selected {
background-color: rgb(40,90,40);
}
QToolBar QToolButton:hover {
background-color: rgb(50,50,50);
border-color: rgb(58,167,221);
border-style: outset;
border-width: 1px;
border-radius: 3px;
padding: 2px;
}
QToolBar QToolButton:pressed {
background-color: rgb(30,30,30);
border-style: inset;
border-width: 1px;
border-radius: 2px;
padding: 2px;
}
QToolBar QToolButton:checked {
background-color: rgb(30,30,30);
border-style: inset;
border-width: 1px;
border-radius: 2px;
padding: 2px;
}
QTreeView {
alternate-background-color: rgb(60,60,60);
background: rgb(30,30,30);
}
|