forked from ajaxorg/ace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub_dark-css.js
134 lines (108 loc) · 2.93 KB
/
github_dark-css.js
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
module.exports = `.ace-github-dark .ace_gutter {
background: #24292e;
color: #7388b5
}
.ace-github-dark .ace_print-margin {
width: 1px;
background: #00204b
}
.ace-github-dark {
background-color: #24292e;
color: #FFFFFF
}
.ace-github-dark .ace_constant.ace_other,
.ace-github-dark .ace_cursor {
color: #FFFFFF
}
.ace-github-dark .ace_marker-layer .ace_selection {
background: #003F8E
}
.ace-github-dark.ace_multiselect .ace_selection.ace_start {
box-shadow: 0 0 3px 0px #24292e;
}
.ace-github-dark .ace_marker-layer .ace_step {
background: rgb(127, 111, 19)
}
.ace-github-dark .ace_marker-layer .ace_bracket {
margin: -1px 0 0 -1px;
border: 1px solid #404F7D
}
.ace-github-dark .ace_marker-layer .ace_active-line {
background: #00346E
}
.ace-github-dark .ace_gutter-active-line {
background-color: #24292e
}
.ace-github-dark .ace_marker-layer .ace_selected-word {
border: 1px solid #003F8E
}
.ace-github-dark .ace_invisible {
color: #404F7D
}
.ace-github-dark .ace_keyword,
.ace-github-dark .ace_meta,
.ace-github-dark .ace_storage,
.ace-github-dark .ace_storage.ace_type,
.ace-github-dark .ace_support.ace_type {
color: #ff7b72
}
.ace-github-dark .ace_keyword.ace_operator {
color: #79c0ff
}
.ace-github-dark .ace_constant.ace_character,
.ace-github-dark .ace_constant.ace_language,
.ace-github-dark .ace_constant.ace_numeric,
.ace-github-dark .ace_keyword.ace_other.ace_unit,
.ace-github-dark .ace_support.ace_constant,
.ace-github-dark .ace_variable.ace_parameter {
color: #FFC58F
}
.ace-github-dark .ace_invalid {
color: #FFFFFF;
background-color: #F99DA5
}
.ace-github-dark .ace_invalid.ace_deprecated {
color: #FFFFFF;
background-color: #ff7b72
}
.ace-github-dark .ace_fold {
background-color: #BBDAFF;
border-color: #FFFFFF
}
.ace-github-dark .ace_entity.ace_name.ace_function,
.ace-github-dark .ace_support.ace_function,
.ace-github-dark .ace_variable {
color: #BBDAFF
}
.ace-github-dark .ace_support.ace_class,
.ace-github-dark .ace_support.ace_type {
color: #FFEEAD
}
.ace-github-dark .ace_heading,
.ace-github-dark .ace_markup.ace_heading,
.ace-github-dark .ace_string {
color: #9fcef6
}
.ace-github-dark .ace_entity.ace_name.ace_tag,
.ace-github-dark .ace_entity.ace_other.ace_attribute-name,
.ace-github-dark .ace_meta.ace_tag,
.ace-github-dark .ace_string.ace_regexp,
.ace-github-dark .ace_variable {
color: #FF9DA4
}
.ace-github-dark .ace_comment {
color: #7285B7
}
.ace-github-dark .ace_indent-guide {
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWNgYGBgYJDzqfwPAANXAeNsiA+ZAAAAAElFTkSuQmCC) right repeat-y
}
.ace-github-dark .ace_indent-guide-active {
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQIW2PQ1dX9zzBz5sz/ABCcBFFentLlAAAAAElFTkSuQmCC) right repeat-y;
}
.ace-github-dark .ace_constant.ace_buildin {
color: #0086B3;
}
.ace-github-dark .ace_variable.ace_language {
color: #ffffff;
}
`;