Projekt

Obecné

Profil

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

    
3
exports.isDark = true;
4
exports.cssClass = "ace-twilight";
5
exports.cssText = ".ace-twilight .ace_gutter {\
6
background: #232323;\
7
color: #E2E2E2\
8
}\
9
.ace-twilight .ace_print-margin {\
10
width: 1px;\
11
background: #232323\
12
}\
13
.ace-twilight {\
14
background-color: #141414;\
15
color: #F8F8F8\
16
}\
17
.ace-twilight .ace_cursor {\
18
color: #A7A7A7\
19
}\
20
.ace-twilight .ace_marker-layer .ace_selection {\
21
background: rgba(221, 240, 255, 0.20)\
22
}\
23
.ace-twilight.ace_multiselect .ace_selection.ace_start {\
24
box-shadow: 0 0 3px 0px #141414;\
25
}\
26
.ace-twilight .ace_marker-layer .ace_step {\
27
background: rgb(102, 82, 0)\
28
}\
29
.ace-twilight .ace_marker-layer .ace_bracket {\
30
margin: -1px 0 0 -1px;\
31
border: 1px solid rgba(255, 255, 255, 0.25)\
32
}\
33
.ace-twilight .ace_marker-layer .ace_active-line {\
34
background: rgba(255, 255, 255, 0.031)\
35
}\
36
.ace-twilight .ace_gutter-active-line {\
37
background-color: rgba(255, 255, 255, 0.031)\
38
}\
39
.ace-twilight .ace_marker-layer .ace_selected-word {\
40
border: 1px solid rgba(221, 240, 255, 0.20)\
41
}\
42
.ace-twilight .ace_invisible {\
43
color: rgba(255, 255, 255, 0.25)\
44
}\
45
.ace-twilight .ace_keyword,\
46
.ace-twilight .ace_meta {\
47
color: #CDA869\
48
}\
49
.ace-twilight .ace_constant,\
50
.ace-twilight .ace_constant.ace_character,\
51
.ace-twilight .ace_constant.ace_character.ace_escape,\
52
.ace-twilight .ace_constant.ace_other,\
53
.ace-twilight .ace_heading,\
54
.ace-twilight .ace_markup.ace_heading,\
55
.ace-twilight .ace_support.ace_constant {\
56
color: #CF6A4C\
57
}\
58
.ace-twilight .ace_invalid.ace_illegal {\
59
color: #F8F8F8;\
60
background-color: rgba(86, 45, 86, 0.75)\
61
}\
62
.ace-twilight .ace_invalid.ace_deprecated {\
63
text-decoration: underline;\
64
font-style: italic;\
65
color: #D2A8A1\
66
}\
67
.ace-twilight .ace_support {\
68
color: #9B859D\
69
}\
70
.ace-twilight .ace_fold {\
71
background-color: #AC885B;\
72
border-color: #F8F8F8\
73
}\
74
.ace-twilight .ace_support.ace_function {\
75
color: #DAD085\
76
}\
77
.ace-twilight .ace_list,\
78
.ace-twilight .ace_markup.ace_list,\
79
.ace-twilight .ace_storage {\
80
color: #F9EE98\
81
}\
82
.ace-twilight .ace_entity.ace_name.ace_function,\
83
.ace-twilight .ace_meta.ace_tag,\
84
.ace-twilight .ace_variable {\
85
color: #AC885B\
86
}\
87
.ace-twilight .ace_string {\
88
color: #8F9D6A\
89
}\
90
.ace-twilight .ace_string.ace_regexp {\
91
color: #E9C062\
92
}\
93
.ace-twilight .ace_comment {\
94
font-style: italic;\
95
color: #5F5A60\
96
}\
97
.ace-twilight .ace_variable {\
98
color: #7587A6\
99
}\
100
.ace-twilight .ace_xml-pe {\
101
color: #494949\
102
}\
103
.ace-twilight .ace_indent-guide {\
104
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWMQERFpYLC1tf0PAAgOAnPnhxyiAAAAAElFTkSuQmCC) right repeat-y\
105
}";
106

    
107
var dom = require("../lib/dom");
108
dom.importCssString(exports.cssText, exports.cssClass);
109
});                (function() {
110
                    ace.require(["ace/theme/twilight"], function(m) {
111
                        if (typeof module == "object" && typeof exports == "object" && module) {
112
                            module.exports = m;
113
                        }
114
                    });
115
                })();
116
            
(233-233/244)