Projekt

Obecné

Profil

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

    
4
exports.isDark = false;
5
exports.cssText = ".ace-eclipse .ace_gutter {\
6
background: #ebebeb;\
7
border-right: 1px solid rgb(159, 159, 159);\
8
color: rgb(136, 136, 136);\
9
}\
10
.ace-eclipse .ace_print-margin {\
11
width: 1px;\
12
background: #ebebeb;\
13
}\
14
.ace-eclipse {\
15
background-color: #FFFFFF;\
16
color: black;\
17
}\
18
.ace-eclipse .ace_fold {\
19
background-color: rgb(60, 76, 114);\
20
}\
21
.ace-eclipse .ace_cursor {\
22
color: black;\
23
}\
24
.ace-eclipse .ace_storage,\
25
.ace-eclipse .ace_keyword,\
26
.ace-eclipse .ace_variable {\
27
color: rgb(127, 0, 85);\
28
}\
29
.ace-eclipse .ace_constant.ace_buildin {\
30
color: rgb(88, 72, 246);\
31
}\
32
.ace-eclipse .ace_constant.ace_library {\
33
color: rgb(6, 150, 14);\
34
}\
35
.ace-eclipse .ace_function {\
36
color: rgb(60, 76, 114);\
37
}\
38
.ace-eclipse .ace_string {\
39
color: rgb(42, 0, 255);\
40
}\
41
.ace-eclipse .ace_comment {\
42
color: rgb(113, 150, 130);\
43
}\
44
.ace-eclipse .ace_comment.ace_doc {\
45
color: rgb(63, 95, 191);\
46
}\
47
.ace-eclipse .ace_comment.ace_doc.ace_tag {\
48
color: rgb(127, 159, 191);\
49
}\
50
.ace-eclipse .ace_constant.ace_numeric {\
51
color: darkblue;\
52
}\
53
.ace-eclipse .ace_tag {\
54
color: rgb(25, 118, 116);\
55
}\
56
.ace-eclipse .ace_type {\
57
color: rgb(127, 0, 127);\
58
}\
59
.ace-eclipse .ace_xml-pe {\
60
color: rgb(104, 104, 91);\
61
}\
62
.ace-eclipse .ace_marker-layer .ace_selection {\
63
background: rgb(181, 213, 255);\
64
}\
65
.ace-eclipse .ace_marker-layer .ace_bracket {\
66
margin: -1px 0 0 -1px;\
67
border: 1px solid rgb(192, 192, 192);\
68
}\
69
.ace-eclipse .ace_meta.ace_tag {\
70
color:rgb(25, 118, 116);\
71
}\
72
.ace-eclipse .ace_invisible {\
73
color: #ddd;\
74
}\
75
.ace-eclipse .ace_entity.ace_other.ace_attribute-name {\
76
color:rgb(127, 0, 127);\
77
}\
78
.ace-eclipse .ace_marker-layer .ace_step {\
79
background: rgb(255, 255, 0);\
80
}\
81
.ace-eclipse .ace_active-line {\
82
background: rgb(232, 242, 254);\
83
}\
84
.ace-eclipse .ace_gutter-active-line {\
85
background-color : #DADADA;\
86
}\
87
.ace-eclipse .ace_marker-layer .ace_selected-word {\
88
border: 1px solid rgb(181, 213, 255);\
89
}\
90
.ace-eclipse .ace_indent-guide {\
91
background: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==\") right repeat-y;\
92
}";
93

    
94
exports.cssClass = "ace-eclipse";
95

    
96
var dom = require("../lib/dom");
97
dom.importCssString(exports.cssText, exports.cssClass);
98
});                (function() {
99
                    ace.require(["ace/theme/eclipse"], function(m) {
100
                        if (typeof module == "object" && typeof exports == "object" && module) {
101
                            module.exports = m;
102
                        }
103
                    });
104
                })();
105
            
(208-208/244)