Projekt

Obecné

Profil

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

    
4
exports.isDark = false;
5
exports.cssClass = "ace-tm";
6
exports.cssText = ".ace-tm .ace_gutter {\
7
background: #f0f0f0;\
8
color: #333;\
9
}\
10
.ace-tm .ace_print-margin {\
11
width: 1px;\
12
background: #e8e8e8;\
13
}\
14
.ace-tm .ace_fold {\
15
background-color: #6B72E6;\
16
}\
17
.ace-tm {\
18
background-color: #FFFFFF;\
19
color: black;\
20
}\
21
.ace-tm .ace_cursor {\
22
color: black;\
23
}\
24
.ace-tm .ace_invisible {\
25
color: rgb(191, 191, 191);\
26
}\
27
.ace-tm .ace_storage,\
28
.ace-tm .ace_keyword {\
29
color: blue;\
30
}\
31
.ace-tm .ace_constant {\
32
color: rgb(197, 6, 11);\
33
}\
34
.ace-tm .ace_constant.ace_buildin {\
35
color: rgb(88, 72, 246);\
36
}\
37
.ace-tm .ace_constant.ace_language {\
38
color: rgb(88, 92, 246);\
39
}\
40
.ace-tm .ace_constant.ace_library {\
41
color: rgb(6, 150, 14);\
42
}\
43
.ace-tm .ace_invalid {\
44
background-color: rgba(255, 0, 0, 0.1);\
45
color: red;\
46
}\
47
.ace-tm .ace_support.ace_function {\
48
color: rgb(60, 76, 114);\
49
}\
50
.ace-tm .ace_support.ace_constant {\
51
color: rgb(6, 150, 14);\
52
}\
53
.ace-tm .ace_support.ace_type,\
54
.ace-tm .ace_support.ace_class {\
55
color: rgb(109, 121, 222);\
56
}\
57
.ace-tm .ace_keyword.ace_operator {\
58
color: rgb(104, 118, 135);\
59
}\
60
.ace-tm .ace_string {\
61
color: rgb(3, 106, 7);\
62
}\
63
.ace-tm .ace_comment {\
64
color: rgb(76, 136, 107);\
65
}\
66
.ace-tm .ace_comment.ace_doc {\
67
color: rgb(0, 102, 255);\
68
}\
69
.ace-tm .ace_comment.ace_doc.ace_tag {\
70
color: rgb(128, 159, 191);\
71
}\
72
.ace-tm .ace_constant.ace_numeric {\
73
color: rgb(0, 0, 205);\
74
}\
75
.ace-tm .ace_variable {\
76
color: rgb(49, 132, 149);\
77
}\
78
.ace-tm .ace_xml-pe {\
79
color: rgb(104, 104, 91);\
80
}\
81
.ace-tm .ace_entity.ace_name.ace_function {\
82
color: #0000A2;\
83
}\
84
.ace-tm .ace_heading {\
85
color: rgb(12, 7, 255);\
86
}\
87
.ace-tm .ace_list {\
88
color:rgb(185, 6, 144);\
89
}\
90
.ace-tm .ace_meta.ace_tag {\
91
color:rgb(0, 22, 142);\
92
}\
93
.ace-tm .ace_string.ace_regex {\
94
color: rgb(255, 0, 0)\
95
}\
96
.ace-tm .ace_marker-layer .ace_selection {\
97
background: rgb(181, 213, 255);\
98
}\
99
.ace-tm.ace_multiselect .ace_selection.ace_start {\
100
box-shadow: 0 0 3px 0px white;\
101
}\
102
.ace-tm .ace_marker-layer .ace_step {\
103
background: rgb(252, 255, 0);\
104
}\
105
.ace-tm .ace_marker-layer .ace_stack {\
106
background: rgb(164, 229, 101);\
107
}\
108
.ace-tm .ace_marker-layer .ace_bracket {\
109
margin: -1px 0 0 -1px;\
110
border: 1px solid rgb(192, 192, 192);\
111
}\
112
.ace-tm .ace_marker-layer .ace_active-line {\
113
background: rgba(0, 0, 0, 0.07);\
114
}\
115
.ace-tm .ace_gutter-active-line {\
116
background-color : #dcdcdc;\
117
}\
118
.ace-tm .ace_marker-layer .ace_selected-word {\
119
background: rgb(250, 250, 255);\
120
border: 1px solid rgb(200, 200, 250);\
121
}\
122
.ace-tm .ace_indent-guide {\
123
background: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==\") right repeat-y;\
124
}\
125
";
126
exports.$id = "ace/theme/textmate";
127

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