Projekt

Obecné

Profil

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

    
3
exports.isDark = false;
4
exports.cssClass = "ace-dawn";
5
exports.cssText = ".ace-dawn .ace_gutter {\
6
background: #ebebeb;\
7
color: #333\
8
}\
9
.ace-dawn .ace_print-margin {\
10
width: 1px;\
11
background: #e8e8e8\
12
}\
13
.ace-dawn {\
14
background-color: #F9F9F9;\
15
color: #080808\
16
}\
17
.ace-dawn .ace_cursor {\
18
color: #000000\
19
}\
20
.ace-dawn .ace_marker-layer .ace_selection {\
21
background: rgba(39, 95, 255, 0.30)\
22
}\
23
.ace-dawn.ace_multiselect .ace_selection.ace_start {\
24
box-shadow: 0 0 3px 0px #F9F9F9;\
25
}\
26
.ace-dawn .ace_marker-layer .ace_step {\
27
background: rgb(255, 255, 0)\
28
}\
29
.ace-dawn .ace_marker-layer .ace_bracket {\
30
margin: -1px 0 0 -1px;\
31
border: 1px solid rgba(75, 75, 126, 0.50)\
32
}\
33
.ace-dawn .ace_marker-layer .ace_active-line {\
34
background: rgba(36, 99, 180, 0.12)\
35
}\
36
.ace-dawn .ace_gutter-active-line {\
37
background-color : #dcdcdc\
38
}\
39
.ace-dawn .ace_marker-layer .ace_selected-word {\
40
border: 1px solid rgba(39, 95, 255, 0.30)\
41
}\
42
.ace-dawn .ace_invisible {\
43
color: rgba(75, 75, 126, 0.50)\
44
}\
45
.ace-dawn .ace_keyword,\
46
.ace-dawn .ace_meta {\
47
color: #794938\
48
}\
49
.ace-dawn .ace_constant,\
50
.ace-dawn .ace_constant.ace_character,\
51
.ace-dawn .ace_constant.ace_character.ace_escape,\
52
.ace-dawn .ace_constant.ace_other {\
53
color: #811F24\
54
}\
55
.ace-dawn .ace_invalid.ace_illegal {\
56
text-decoration: underline;\
57
font-style: italic;\
58
color: #F8F8F8;\
59
background-color: #B52A1D\
60
}\
61
.ace-dawn .ace_invalid.ace_deprecated {\
62
text-decoration: underline;\
63
font-style: italic;\
64
color: #B52A1D\
65
}\
66
.ace-dawn .ace_support {\
67
color: #691C97\
68
}\
69
.ace-dawn .ace_support.ace_constant {\
70
color: #B4371F\
71
}\
72
.ace-dawn .ace_fold {\
73
background-color: #794938;\
74
border-color: #080808\
75
}\
76
.ace-dawn .ace_list,\
77
.ace-dawn .ace_markup.ace_list,\
78
.ace-dawn .ace_support.ace_function {\
79
color: #693A17\
80
}\
81
.ace-dawn .ace_storage {\
82
font-style: italic;\
83
color: #A71D5D\
84
}\
85
.ace-dawn .ace_string {\
86
color: #0B6125\
87
}\
88
.ace-dawn .ace_string.ace_regexp {\
89
color: #CF5628\
90
}\
91
.ace-dawn .ace_comment {\
92
font-style: italic;\
93
color: #5A525F\
94
}\
95
.ace-dawn .ace_heading,\
96
.ace-dawn .ace_markup.ace_heading {\
97
color: #19356D\
98
}\
99
.ace-dawn .ace_variable {\
100
color: #234A97\
101
}\
102
.ace-dawn .ace_indent-guide {\
103
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWNgYGBgYLh/5+x/AAizA4hxNNsZAAAAAElFTkSuQmCC) 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/dawn"], function(m) {
110
                        if (typeof module == "object" && typeof exports == "object" && module) {
111
                            module.exports = m;
112
                        }
113
                    });
114
                })();
115
            
(205-205/244)