-
Notifications
You must be signed in to change notification settings - Fork 12
/
dark_qt_creator.css
125 lines (107 loc) · 2.05 KB
/
dark_qt_creator.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
/* edit the shortcut to Qt Creator and add the following:
-stylesheet /path/to/dark_qt_creator.css
*/
QMainWindow,
QAbstractItemView
/* QTreeView::branch, */
/* QTabBar::tab */{
color: #EAEAEA;
background: #5e5e57;
font-size: 9pt;
}
QComboBox
{
color: #FFFFFF;
background-color: #5C5C5C;
min-height: 15px;
min-width: 60px;
max-width: 360px;
padding-left: 5px;
padding-right: 15px;
border-style: solid;
}
QComboBox QAbstractItemView
{
color: #000000;
background-color: #CFCFCF;
selection-background-color: #1D1D1D;
border-style: solid;
}
QHeaderView::section
{
color: white;
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);
/* background-color: #7F7F7F; */
padding-left: 4px;
border: 1px solid #6c6c6c;
}
QTreeView
{
color: #000000;
background-color: #B6B6B6;
alternate-background-color: #A5A5A5;
selection-color: #000000;
selection-background-color: #7FB3E6;
}
QTreeView::branch:item
{
color: #714DFF;
}
QListView
{
color: #000000;
background-color: #D7D7D7;
}
QWebView
{
background-color: #D7D7D7;
}
QPlainTextEdit
{
background: #000000;
}
/* QObject[windowTitle="Object Inspector"] QTreeView
{
color: #EAEAEA;
alternate-background-color: black;
}
QObject[windowTitle="Property Editor"] QTreeView
{
color: black;
} */
QScrollBar {
border: none;
background: #333333;
height: 6px;
width: 6px;
margin: 0px;
}
QScrollBar::handle{
background: #494949;
min-width: 10px;
min-height: 10px;
}
QScrollBar::add-line, QScrollBar::sub-line {
background: none;
border: none;
}
QScrollBar::add-page, QScrollBar::sub-page {
background: none;
}
/* QTabBar::tab:selected {
font: bold;
border-color: #9B9B9B;
border-bottom-color: #C2C7CB;
}
QTabBar::tab:!selected {
margin-top: 2px;
} */
QToolBar {
border-style: solid;
border-style: outset;
color: #EAEAEA;
background: #333333;
font-size: 9pt;
}