1
+ module . exports = `
2
+ .ace-cloud_editor .ace_gutter {
3
+ background: #ffffff;
4
+ color: #3a3a42;
5
+ }
6
+
7
+ .ace-cloud_editor .ace_tooltip-marker-error.ace_tooltip-marker {
8
+ background-color: #d13212;
9
+ }
10
+ .ace-cloud_editor .ace_tooltip-marker-warning.ace_tooltip-marker {
11
+ background-color: #906806;
12
+ }
13
+
14
+ .ace-cloud_editor .ace_print-margin {
15
+ width: 1px;
16
+ background: #697077;
17
+ }
18
+
19
+ .ace-cloud_editor {
20
+ background-color: #ffffff;
21
+ color: #3a3a42;
22
+ }
23
+
24
+ .ace-cloud_editor .ace_cursor {
25
+ color: #3a3a42;
26
+ }
27
+
28
+ .ace-cloud_editor .ace_marker-layer .ace_selection {
29
+ background: #bfceff;
30
+ }
31
+
32
+ .ace-cloud_editor.ace_multiselect .ace_selection.ace_start {
33
+ box-shadow: 0 0 3px 0px #ffffff;
34
+ border-radius: 2px;
35
+ }
36
+
37
+ .ace-cloud_editor .ace_marker-layer .ace_step {
38
+ background: #697077;
39
+ }
40
+
41
+ .ace-cloud_editor .ace_marker-layer .ace_bracket {
42
+ margin: 0 0 0 -1px;
43
+ border: 1px solid #697077;
44
+ }
45
+
46
+ .ace-cloud_editor .ace_marker-layer .ace_active-line {
47
+ box-sizing: border-box;
48
+ border-top: 1px solid #9191ac;
49
+ border-bottom: 1px solid #9191ac;
50
+ }
51
+
52
+ .ace-cloud_editor .ace_gutter-cell_svg-icons {
53
+ box-sizing: border-box;
54
+ border-top: 1px solid #ffffff;
55
+ border-bottom: 1px solid #ffffff;
56
+ }
57
+
58
+ .ace-cloud_editor .ace_gutter-active-line {
59
+ background-repeat: no-repeat;
60
+ box-sizing: border-box;
61
+ border-top: 1px solid #9191ac;
62
+ border-bottom: 1px solid #9191ac;
63
+ }
64
+
65
+ .ace-cloud_editor .ace_marker-layer .ace_selected-word {
66
+ border: 1px solid #bfceff;
67
+ }
68
+
69
+ .ace-cloud_editor .ace_fold {
70
+ background-color: #2963d6;
71
+ border-color: #3a3a42;
72
+ }
73
+
74
+ .ace-cloud_editor .ace_keyword {
75
+ color: #9749d1;
76
+ }
77
+
78
+ .ace-cloud_editor .ace_meta.ace_tag {
79
+ color: #d1000a;
80
+ }
81
+
82
+ .ace-cloud_editor .ace_constant {
83
+ color: #a26202;
84
+ }
85
+
86
+ .ace-cloud_editor .ace_constant.ace_numeric {
87
+ color: #a26202;
88
+ }
89
+
90
+ .ace-cloud_editor .ace_constant.ace_character.ace_escape {
91
+ color: #d91792;
92
+ }
93
+
94
+ .ace-cloud_editor .ace_support.ace_function {
95
+ color: #2963d6;
96
+ }
97
+
98
+ .ace-cloud_editor .ace_support.ace_class {
99
+ color: #a26202;
100
+ }
101
+
102
+ .ace-cloud_editor .ace_storage {
103
+ color: #9749d1;
104
+ }
105
+
106
+ .ace-cloud_editor .ace_invalid.ace_illegal {
107
+ color: #ffffff;
108
+ background-color: #d1000a;
109
+ }
110
+
111
+ .ace-cloud_editor .ace_invalid.ace_deprecated {
112
+ color: #ffffff;
113
+ background-color: #a26202;
114
+ }
115
+
116
+ .ace-cloud_editor .ace_string {
117
+ color: #218000;
118
+ }
119
+
120
+ .ace-cloud_editor .ace_string.ace_regexp {
121
+ color: #218000;
122
+ }
123
+
124
+ .ace-cloud_editor .ace_comment,
125
+ .ace-cloud_editor .ace_ghost_text {
126
+ color: #697077;
127
+ opacity: 1;
128
+ }
129
+
130
+ .ace-cloud_editor .ace_variable {
131
+ color: #d1000a;
132
+ }
133
+
134
+ .ace-cloud_editor .ace_meta.ace_selector {
135
+ color: #9749d1;
136
+ }
137
+
138
+ .ace-cloud_editor .ace_entity.ace_other.ace_attribute-name {
139
+ color: #a26202;
140
+ }
141
+
142
+ .ace-cloud_editor .ace_entity.ace_name.ace_function {
143
+ color: #2963d6;
144
+ }
145
+
146
+ .ace-cloud_editor .ace_entity.ace_name.ace_tag {
147
+ color: #d1000a;
148
+ }
149
+
150
+ .ace-cloud_editor .ace_heading {
151
+ color: #2963d6;
152
+ }
153
+
154
+ .ace-cloud_editor .ace_xml-pe {
155
+ color: #a26202;
156
+ }
157
+ .ace-cloud_editor .ace_doctype {
158
+ color: #d1000a;
159
+ }
160
+
161
+ .ace-cloud_editor .ace_tooltip {
162
+ background-color: #ffffff;
163
+ color: #3a3a42;
164
+ }
165
+
166
+ .ace-cloud_editor .ace_icon_svg.ace_error,
167
+ .ace-cloud_editor .ace_icon_svg.ace_error_fold {
168
+ background-color: #d13212;
169
+ }
170
+ .ace-cloud_editor .ace_icon_svg.ace_warning,
171
+ .ace-cloud_editor .ace_icon_svg.ace_warning_fold {
172
+ background-color: #906806;
173
+ }
174
+ .ace-cloud_editor .ace_icon_svg.ace_info {
175
+ background-color: #0073bb;
176
+ }
177
+ .ace-cloud_editor .ace_highlight-marker {
178
+ background: none;
179
+ border: #2963d6 1px solid;
180
+ }
181
+ .ace-cloud_editor .ace_tooltip.ace_hover-tooltip:focus > div {
182
+ outline: 1px solid #0073bb;
183
+ }
184
+
185
+ ` ;
0 commit comments