forked from victorhaggqvist/qtcreator-style
-
Notifications
You must be signed in to change notification settings - Fork 31
/
dark.css
100 lines (89 loc) · 1.98 KB
/
dark.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
QMainWindow,
QAbstractItemView,
QTreeView::branch,
QStackWidget,
QTabBar::tab{
color: #EAEAEA;
background: rgb(37, 37, 37);
}
QAbstractItemView::item:selected {
color: #EAEAEA;
background-color: rgb(63,63,70);
border:none;
}
/* ScrollBar style */
QScrollBar {
border: none;
background: rgb(62,62,62);
height: 6px;
width: 12px;
margin: 0px;
}
QScrollBar::handle{
background: rgb(104, 104, 104);
min-width: 10px;
min-height: 10px;
}
QScrollBar::handle:hover{
background: rgb(158, 158, 158);
}
QScrollBar::handle:hover:pressed{
background: rgb(239, 239, 239);
}
QScrollBar::add-line, QScrollBar::sub-line {
background: none;
border: none;
}
QScrollBar::add-page, QScrollBar::sub-page {
background: none;
}
QTreeView::branch:closed:adjoins-item:has-children {
background: solid #777777;
margin: 6px;
height: 6px;
width: 6px;
}
QTabBar::tab:selected {
font: bold;
border-color: #9B9B9B;
border-bottom-color: #C2C7CB;
}
QTabBar::tab:!selected {
margin-top: 2px;
}
QHeaderView::section {
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,
stop:0 #616161, stop: 0.5 #505050,
stop: 0.6 #434343, stop:1 #656565);
color: white;
padding-left: 4px;
border: 1px solid #6c6c6c;
}
QToolBar {
border-style: solid;
border-style: outset;
color: #EAEAEA;
background: #333333;
font-size: 9pt;
}
/* The code editor background */
QPlainTextEdit {
background-color: rgb(30,30,30);
}
QObject[windowTitle="File System"] QWidget
{
color: #EAEAEA;
}
/* search result panel */
QObject[windowTitle="Search Results"] QWidget
{
color: #FFFFFF;
background: rgb(30, 30, 30);
}
QWidget[windowTitle="Compile Output"],
QWidget[windowTitle="Version Control"],
QWidget[windowTitle="QML/JS Console"]
{
color: #EAEAEA;
background: rgb(30, 30, 30);
}