Projekt

Obecné

Profil

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

    
3
exports.isDark = false;
4
exports.cssClass = "ace-tomorrow";
5
exports.cssText = ".ace-tomorrow .ace_gutter {\
6
background: #f6f6f6;\
7
color: #4D4D4C\
8
}\
9
.ace-tomorrow .ace_print-margin {\
10
width: 1px;\
11
background: #f6f6f6\
12
}\
13
.ace-tomorrow {\
14
background-color: #FFFFFF;\
15
color: #4D4D4C\
16
}\
17
.ace-tomorrow .ace_cursor {\
18
color: #AEAFAD\
19
}\
20
.ace-tomorrow .ace_marker-layer .ace_selection {\
21
background: #D6D6D6\
22
}\
23
.ace-tomorrow.ace_multiselect .ace_selection.ace_start {\
24
box-shadow: 0 0 3px 0px #FFFFFF;\
25
}\
26
.ace-tomorrow .ace_marker-layer .ace_step {\
27
background: rgb(255, 255, 0)\
28
}\
29
.ace-tomorrow .ace_marker-layer .ace_bracket {\
30
margin: -1px 0 0 -1px;\
31
border: 1px solid #D1D1D1\
32
}\
33
.ace-tomorrow .ace_marker-layer .ace_active-line {\
34
background: #EFEFEF\
35
}\
36
.ace-tomorrow .ace_gutter-active-line {\
37
background-color : #dcdcdc\
38
}\
39
.ace-tomorrow .ace_marker-layer .ace_selected-word {\
40
border: 1px solid #D6D6D6\
41
}\
42
.ace-tomorrow .ace_invisible {\
43
color: #D1D1D1\
44
}\
45
.ace-tomorrow .ace_keyword,\
46
.ace-tomorrow .ace_meta,\
47
.ace-tomorrow .ace_storage,\
48
.ace-tomorrow .ace_storage.ace_type,\
49
.ace-tomorrow .ace_support.ace_type {\
50
color: #8959A8\
51
}\
52
.ace-tomorrow .ace_keyword.ace_operator {\
53
color: #3E999F\
54
}\
55
.ace-tomorrow .ace_constant.ace_character,\
56
.ace-tomorrow .ace_constant.ace_language,\
57
.ace-tomorrow .ace_constant.ace_numeric,\
58
.ace-tomorrow .ace_keyword.ace_other.ace_unit,\
59
.ace-tomorrow .ace_support.ace_constant,\
60
.ace-tomorrow .ace_variable.ace_parameter {\
61
color: #F5871F\
62
}\
63
.ace-tomorrow .ace_constant.ace_other {\
64
color: #666969\
65
}\
66
.ace-tomorrow .ace_invalid {\
67
color: #FFFFFF;\
68
background-color: #C82829\
69
}\
70
.ace-tomorrow .ace_invalid.ace_deprecated {\
71
color: #FFFFFF;\
72
background-color: #8959A8\
73
}\
74
.ace-tomorrow .ace_fold {\
75
background-color: #4271AE;\
76
border-color: #4D4D4C\
77
}\
78
.ace-tomorrow .ace_entity.ace_name.ace_function,\
79
.ace-tomorrow .ace_support.ace_function,\
80
.ace-tomorrow .ace_variable {\
81
color: #4271AE\
82
}\
83
.ace-tomorrow .ace_support.ace_class,\
84
.ace-tomorrow .ace_support.ace_type {\
85
color: #C99E00\
86
}\
87
.ace-tomorrow .ace_heading,\
88
.ace-tomorrow .ace_markup.ace_heading,\
89
.ace-tomorrow .ace_string {\
90
color: #718C00\
91
}\
92
.ace-tomorrow .ace_entity.ace_name.ace_tag,\
93
.ace-tomorrow .ace_entity.ace_other.ace_attribute-name,\
94
.ace-tomorrow .ace_meta.ace_tag,\
95
.ace-tomorrow .ace_string.ace_regexp,\
96
.ace-tomorrow .ace_variable {\
97
color: #C82829\
98
}\
99
.ace-tomorrow .ace_comment {\
100
color: #8E908C\
101
}\
102
.ace-tomorrow .ace_indent-guide {\
103
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bdu3f/BwAlfgctduB85QAAAABJRU5ErkJggg==) right repeat-y\
104
}";
105

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