Projekt

Obecné

Profil

Stáhnout (3.46 KB) Statistiky
| Větev: | Tag: | Revize:
1
ace.define("ace/theme/chaos",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
2

    
3
exports.isDark = true;
4
exports.cssClass = "ace-chaos";
5
exports.cssText = ".ace-chaos .ace_gutter {\
6
background: #141414;\
7
color: #595959;\
8
border-right: 1px solid #282828;\
9
}\
10
.ace-chaos .ace_gutter-cell.ace_warning {\
11
background-image: none;\
12
background: #FC0;\
13
border-left: none;\
14
padding-left: 0;\
15
color: #000;\
16
}\
17
.ace-chaos .ace_gutter-cell.ace_error {\
18
background-position: -6px center;\
19
background-image: none;\
20
background: #F10;\
21
border-left: none;\
22
padding-left: 0;\
23
color: #000;\
24
}\
25
.ace-chaos .ace_print-margin {\
26
border-left: 1px solid #555;\
27
right: 0;\
28
background: #1D1D1D;\
29
}\
30
.ace-chaos {\
31
background-color: #161616;\
32
color: #E6E1DC;\
33
}\
34
.ace-chaos .ace_cursor {\
35
border-left: 2px solid #FFFFFF;\
36
}\
37
.ace-chaos .ace_cursor.ace_overwrite {\
38
border-left: 0px;\
39
border-bottom: 1px solid #FFFFFF;\
40
}\
41
.ace-chaos .ace_marker-layer .ace_selection {\
42
background: #494836;\
43
}\
44
.ace-chaos .ace_marker-layer .ace_step {\
45
background: rgb(198, 219, 174);\
46
}\
47
.ace-chaos .ace_marker-layer .ace_bracket {\
48
margin: -1px 0 0 -1px;\
49
border: 1px solid #FCE94F;\
50
}\
51
.ace-chaos .ace_marker-layer .ace_active-line {\
52
background: #333;\
53
}\
54
.ace-chaos .ace_gutter-active-line {\
55
background-color: #222;\
56
}\
57
.ace-chaos .ace_invisible {\
58
color: #404040;\
59
}\
60
.ace-chaos .ace_keyword {\
61
color:#00698F;\
62
}\
63
.ace-chaos .ace_keyword.ace_operator {\
64
color:#FF308F;\
65
}\
66
.ace-chaos .ace_constant {\
67
color:#1EDAFB;\
68
}\
69
.ace-chaos .ace_constant.ace_language {\
70
color:#FDC251;\
71
}\
72
.ace-chaos .ace_constant.ace_library {\
73
color:#8DFF0A;\
74
}\
75
.ace-chaos .ace_constant.ace_numeric {\
76
color:#58C554;\
77
}\
78
.ace-chaos .ace_invalid {\
79
color:#FFFFFF;\
80
background-color:#990000;\
81
}\
82
.ace-chaos .ace_invalid.ace_deprecated {\
83
color:#FFFFFF;\
84
background-color:#990000;\
85
}\
86
.ace-chaos .ace_support {\
87
color: #999;\
88
}\
89
.ace-chaos .ace_support.ace_function {\
90
color:#00AEEF;\
91
}\
92
.ace-chaos .ace_function {\
93
color:#00AEEF;\
94
}\
95
.ace-chaos .ace_string {\
96
color:#58C554;\
97
}\
98
.ace-chaos .ace_comment {\
99
color:#555;\
100
font-style:italic;\
101
padding-bottom: 0px;\
102
}\
103
.ace-chaos .ace_variable {\
104
color:#997744;\
105
}\
106
.ace-chaos .ace_meta.ace_tag {\
107
color:#BE53E6;\
108
}\
109
.ace-chaos .ace_entity.ace_other.ace_attribute-name {\
110
color:#FFFF89;\
111
}\
112
.ace-chaos .ace_markup.ace_underline {\
113
text-decoration: underline;\
114
}\
115
.ace-chaos .ace_fold-widget {\
116
text-align: center;\
117
}\
118
.ace-chaos .ace_fold-widget:hover {\
119
color: #777;\
120
}\
121
.ace-chaos .ace_fold-widget.ace_start,\
122
.ace-chaos .ace_fold-widget.ace_end,\
123
.ace-chaos .ace_fold-widget.ace_closed{\
124
background: none !important;\
125
border: none;\
126
box-shadow: none;\
127
}\
128
.ace-chaos .ace_fold-widget.ace_start:after {\
129
content: '▾'\
130
}\
131
.ace-chaos .ace_fold-widget.ace_end:after {\
132
content: '▴'\
133
}\
134
.ace-chaos .ace_fold-widget.ace_closed:after {\
135
content: '‣'\
136
}\
137
.ace-chaos .ace_indent-guide {\
138
border-right:1px dotted #333;\
139
margin-right:-1px;\
140
}\
141
.ace-chaos .ace_fold { \
142
background: #222; \
143
border-radius: 3px; \
144
color: #7AF; \
145
border: none; \
146
}\
147
.ace-chaos .ace_fold:hover {\
148
background: #CCC; \
149
color: #000;\
150
}\
151
";
152

    
153
var dom = require("../lib/dom");
154
dom.importCssString(exports.cssText, exports.cssClass);
155

    
156
});                (function() {
157
                    ace.require(["ace/theme/chaos"], function(m) {
158
                        if (typeof module == "object" && typeof exports == "object" && module) {
159
                            module.exports = m;
160
                        }
161
                    });
162
                })();
163
            
(199-199/244)