-
Notifications
You must be signed in to change notification settings - Fork 25
/
Custom.css
238 lines (186 loc) · 5.52 KB
/
Custom.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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
/**********************************************/
/*
/* Darker Skin by Darcy Clarke - 2011
/*
/* For how to install, or more themes, check out:
/* http://darcyclarke.me/design/skin-your-chrome-inspector/
/*
/* Color scheme is based on Joe Bergantine's Specials Board:
/* http://joebergantine.com/werkstatt/seestyle
/*
/* Dark Skin for Console by Kornelije Sajler
/*
/* For usage and code clone the git repo:
/* git clone [email protected]:xajler/chrome-devtools-dark-theme.git
/*
/* TODO:
/* Change Links in Console since they are grey!
/*
/**********************************************/
/**********************************************/
/* Layout
/**********************************************/
#elements-content.source-code {
background: #242537 !important;
font-size: 12px !important;
}
#elements-content .highlight {
color: #d4d4d4;
}
#elements-content .selection {
}
#elements-content .selection.selected {
}
#elements-content .parent {
}
/*.outline-disclosure ol:focus li.parent.expanded.selected::before*/
#elements-content .outline-disclosure li.parent::before,
#elements-content .outline-disclosure ol:focus li.parent.expanded.selected::before {
background: none !important;
content: '' !important;
}
#elements-content .parent.selected {
padding-top: 2px !important;
padding-bottom: 2px !important;
}
#elements-content .selected {
background: rgba(255, 255, 255, 0.2);
}
#elements-content .parent.expanded {
}
#elements-content .parent::before {
content: url(chrome-devtools://devtools/Images/treeRightTriangleWhite.png) !important;
position: relative;
z-index: 999;
}
#elements-content .parent.expanded::before {
content: url(chrome-devtools://devtools/Images/treeDownTriangleWhite.png) !important;
}
#elements-sidebar .styles-section .properties li.parent::before,
#elements-sidebar .section > .header::before,
#elements-sidebar .properties-tree li.parent::before,
#elements-sidebar .event-bars .event-bar .header::before {
content: url(chrome-devtools://devtools/Images/treeRightTriangleWhite.png) !important;
}
#elements-sidebar .styles-section .properties li.parent.expanded::before,
#elements-sidebar .section.expanded > .header::before,
#elements-sidebar .properties-tree li.parent.expanded::before,
#elements-sidebar .event-bars .event-bar.expanded .header::before {
content: url(chrome-devtools://devtools/Images/treeDownTriangleWhite.png) !important;
}
/**********************************************/
/* HTML
/**********************************************/
#elements-content .webkit-html-comment {
color: #8c8c8c !important;
}
#elements-content .webkit-html-doctype {
}
#elements-content .webkit-html-tag {
color: #ffc97c !important;
}
#elements-content .webkit-html-attribute-name {
color: #d97640 !important;
}
#elements-content .webkit-html-attribute-value {
color: #abca7e !important;
}
#elements-content .webkit-html-text-node {
color: #c2c3c3 !important;
}
#elements-content .webkit-html-css-node {
color: #c2c3c3 !important;
}
#elements-content .webkit-html-js-node {
color: #c2c3c3 !important;
}
#elements-content .webkit-javascript-keyword {
color: #d97640 !important;
}
#elements-content .webkit-javascript-ident {
color: #d97640 !important;
}
#elements-content .webkit-javascript-string {
}
#elements-content .webkit-javascript-number {
}
#elements-content .webkit-javascript-regexp {
}
/**********************************************/
/* Chrome JavaScript Console
/**********************************************/
#console-view {
position: absolute;
background: #242537 !important;
top: 0;
bottom: 0;
left: 0;
right: 0;
color: #a7d473 !important;
overflow-y: auto;
}
.console-formatted-object, .console-formatted-node {
position: relative;
display: inline-block;
vertical-align: top;
color: #eec981 !important;
}
.console-formatted-number {
color: #3f9bd1 !important;
}
.console-formatted-string, .console-formatted-regexp {
color: #d97640 !important;
white-space: pre;
}
.console-formatted-null, .console-formatted-undefined {
color: #9acbfb !important;
}
.console-group-messages .section .header::before {
position: absolute;
top: 1px;
left: 1px;
width: 8px;
height: 8px;
content: url(chrome-devtools://devtools/Images/treeRightTriangleWhite.png) !important;
}
.console-group-messages .section.expanded .header::before {
content: url(chrome-devtools://devtools/Images/treeDownTriangleWhite.png) !important;
}
.properties-tree li.parent::before {
content: url(chrome-devtools://devtools/Images/treeRightTriangleWhite.png) !important;
opacity: 0.75;
float: left;
width: 8px;
height: 8px;
margin-top: 0;
padding-right: 3px;
-webkit-user-select: none;
}
.properties-tree li.parent.expanded::before {
content: url(chrome-devtools://devtools/Images/treeDownTriangleWhite.png) !important;
margin-top: 1px;
}
.section .properties .name, .event-properties .name {
color: #ac6f44 !important;
}
.section .properties .dimmed {
opacity: 1 !important;
}
.section .properties .value.error {
color: #FF3D3D !important;
}
.section .properties .number, .event-properties .number {
color: #3f9bd1 !important;
}
.section .properties .keyword, .event-properties .keyword {
color: #ac6f44 !important;
}
.section .properties .color, .event-properties .color {
color: #d8f2ba !important;
}
.console-error-level .console-message-text, .console-error-level .section .header .title {
color: #FF3D3D !important;
}
.section .properties .value.error {
color: #FF3D3D !important;
}