1
+ ace . define ( "ace/theme/xcode" , [ "require" , "exports" , "module" , "ace/lib/dom" ] , function ( require , exports , module ) {
2
+
3
+ exports . isDark = false ;
4
+ exports . cssClass = "ace-xcode" ;
5
+ exports . cssText = "\
6
+ .ace-xcode .ace_gutter {\
7
+ background: #e8e8e8;\
8
+ color: #333\
9
+ }\
10
+ .ace-xcode .ace_print-margin {\
11
+ width: 1px;\
12
+ background: #e8e8e8\
13
+ }\
14
+ .ace-xcode {\
15
+ background-color: #FFFFFF;\
16
+ color: #000000\
17
+ }\
18
+ .ace-xcode .ace_cursor {\
19
+ color: #000000\
20
+ }\
21
+ .ace-xcode .ace_marker-layer .ace_selection {\
22
+ background: #B5D5FF\
23
+ }\
24
+ .ace-xcode.ace_multiselect .ace_selection.ace_start {\
25
+ box-shadow: 0 0 3px 0px #FFFFFF;\
26
+ }\
27
+ .ace-xcode .ace_marker-layer .ace_step {\
28
+ background: rgb(198, 219, 174)\
29
+ }\
30
+ .ace-xcode .ace_marker-layer .ace_bracket {\
31
+ margin: -1px 0 0 -1px;\
32
+ border: 1px solid #BFBFBF\
33
+ }\
34
+ .ace-xcode .ace_marker-layer .ace_active-line {\
35
+ background: rgba(0, 0, 0, 0.071)\
36
+ }\
37
+ .ace-xcode .ace_gutter-active-line {\
38
+ background-color: rgba(0, 0, 0, 0.071)\
39
+ }\
40
+ .ace-xcode .ace_marker-layer .ace_selected-word {\
41
+ border: 1px solid #B5D5FF\
42
+ }\
43
+ .ace-xcode .ace_constant.ace_language,\
44
+ .ace-xcode .ace_keyword,\
45
+ .ace-xcode .ace_meta,\
46
+ .ace-xcode .ace_variable.ace_language {\
47
+ color: #C800A4\
48
+ }\
49
+ .ace-xcode .ace_invisible {\
50
+ color: #BFBFBF\
51
+ }\
52
+ .ace-xcode .ace_constant.ace_character,\
53
+ .ace-xcode .ace_constant.ace_other {\
54
+ color: #275A5E\
55
+ }\
56
+ .ace-xcode .ace_constant.ace_numeric {\
57
+ color: #3A00DC\
58
+ }\
59
+ .ace-xcode .ace_entity.ace_other.ace_attribute-name,\
60
+ .ace-xcode .ace_support.ace_constant,\
61
+ .ace-xcode .ace_support.ace_function {\
62
+ color: #450084\
63
+ }\
64
+ .ace-xcode .ace_fold {\
65
+ background-color: #C800A4;\
66
+ border-color: #000000\
67
+ }\
68
+ .ace-xcode .ace_entity.ace_name.ace_tag,\
69
+ .ace-xcode .ace_support.ace_class,\
70
+ .ace-xcode .ace_support.ace_type {\
71
+ color: #790EAD\
72
+ }\
73
+ .ace-xcode .ace_storage {\
74
+ color: #C900A4\
75
+ }\
76
+ .ace-xcode .ace_string {\
77
+ color: #DF0002\
78
+ }\
79
+ .ace-xcode .ace_comment {\
80
+ color: #008E00\
81
+ }\
82
+ .ace-xcode .ace_indent-guide {\
83
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==) right repeat-y\
84
+ }" ;
85
+
86
+ var dom = require ( "../lib/dom" ) ;
87
+ dom . importCssString ( exports . cssText , exports . cssClass ) ;
88
+ } ) ; ( function ( ) {
89
+ ace . require ( [ "ace/theme/xcode" ] , function ( m ) {
90
+ if ( typeof module == "object" && typeof exports == "object" && module ) {
91
+ module . exports = m ;
92
+ }
93
+ } ) ;
94
+ } ) ( ) ;
95
+
0 commit comments