Projekt

Obecné

Profil

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

    
3
exports.isDark = true;
4
exports.cssClass = "ace-dracula";
5
exports.cssText = "\
6
.ace-dracula .ace_gutter {\
7
background: #282a36;\
8
color: rgb(144,145,148)\
9
}\
10
.ace-dracula .ace_print-margin {\
11
width: 1px;\
12
background: #44475a\
13
}\
14
.ace-dracula {\
15
background-color: #282a36;\
16
color: #f8f8f2\
17
}\
18
.ace-dracula .ace_cursor {\
19
color: #f8f8f0\
20
}\
21
.ace-dracula .ace_marker-layer .ace_selection {\
22
background: #44475a\
23
}\
24
.ace-dracula.ace_multiselect .ace_selection.ace_start {\
25
box-shadow: 0 0 3px 0px #282a36;\
26
border-radius: 2px\
27
}\
28
.ace-dracula .ace_marker-layer .ace_step {\
29
background: rgb(198, 219, 174)\
30
}\
31
.ace-dracula .ace_marker-layer .ace_bracket {\
32
margin: -1px 0 0 -1px;\
33
border: 1px solid #a29709\
34
}\
35
.ace-dracula .ace_marker-layer .ace_active-line {\
36
background: #44475a\
37
}\
38
.ace-dracula .ace_gutter-active-line {\
39
background-color: #44475a\
40
}\
41
.ace-dracula .ace_marker-layer .ace_selected-word {\
42
box-shadow: 0px 0px 0px 1px #a29709;\
43
border-radius: 3px;\
44
}\
45
.ace-dracula .ace_fold {\
46
background-color: #50fa7b;\
47
border-color: #f8f8f2\
48
}\
49
.ace-dracula .ace_keyword {\
50
color: #ff79c6\
51
}\
52
.ace-dracula .ace_constant.ace_language {\
53
color: #bd93f9\
54
}\
55
.ace-dracula .ace_constant.ace_numeric {\
56
color: #bd93f9\
57
}\
58
.ace-dracula .ace_constant.ace_character {\
59
color: #bd93f9\
60
}\
61
.ace-dracula .ace_constant.ace_character.ace_escape {\
62
color: #ff79c6\
63
}\
64
.ace-dracula .ace_constant.ace_other {\
65
color: #bd93f9\
66
}\
67
.ace-dracula .ace_support.ace_function {\
68
color: #8be9fd\
69
}\
70
.ace-dracula .ace_support.ace_constant {\
71
color: #6be5fd\
72
}\
73
.ace-dracula .ace_support.ace_class {\
74
font-style: italic;\
75
color: #66d9ef\
76
}\
77
.ace-dracula .ace_support.ace_type {\
78
font-style: italic;\
79
color: #66d9ef\
80
}\
81
.ace-dracula .ace_storage {\
82
color: #ff79c6\
83
}\
84
.ace-dracula .ace_storage.ace_type {\
85
font-style: italic;\
86
color: #8be9fd\
87
}\
88
.ace-dracula .ace_invalid {\
89
color: #F8F8F0;\
90
background-color: #ff79c6\
91
}\
92
.ace-dracula .ace_invalid.ace_deprecated {\
93
color: #F8F8F0;\
94
background-color: #bd93f9\
95
}\
96
.ace-dracula .ace_string {\
97
color: #f1fa8c\
98
}\
99
.ace-dracula .ace_comment {\
100
color: #6272a4\
101
}\
102
.ace-dracula .ace_variable {\
103
color: #50fa7b\
104
}\
105
.ace-dracula .ace_variable.ace_parameter {\
106
font-style: italic;\
107
color: #ffb86c\
108
}\
109
.ace-dracula .ace_entity.ace_other.ace_attribute-name {\
110
color: #50fa7b\
111
}\
112
.ace-dracula .ace_entity.ace_name.ace_function {\
113
color: #50fa7b\
114
}\
115
.ace-dracula .ace_entity.ace_name.ace_tag {\
116
color: #ff79c6\
117
}\
118
.ace-dracula .ace_invisible {\
119
color: #626680;\
120
}\
121
.ace-dracula .ace_indent-guide {\
122
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWNgYGBgYHB3d/8PAAOIAdULw8qMAAAAAElFTkSuQmCC) right repeat-y\
123
}";
124
exports.$selectionColorConflict = true;
125

    
126
var dom = require("../lib/dom");
127
dom.importCssString(exports.cssText, exports.cssClass);
128
});                (function() {
129
                    ace.require(["ace/theme/dracula"], function(m) {
130
                        if (typeof module == "object" && typeof exports == "object" && module) {
131
                            module.exports = m;
132
                        }
133
                    });
134
                })();
135
            
(206-206/244)