1
/* ***** BEGIN LICENSE BLOCK *****
2
* Distributed under the BSD license:
4
* Copyright (c) 2010, Ajax.org B.V.
7
* Redistribution and use in source and binary forms, with or without
8
* modification, are permitted provided that the following conditions are met:
9
* * Redistributions of source code must retain the above copyright
10
* notice, this list of conditions and the following disclaimer.
11
* * Redistributions in binary form must reproduce the above copyright
12
* notice, this list of conditions and the following disclaimer in the
13
* documentation and/or other materials provided with the distribution.
14
* * Neither the name of Ajax.org B.V. nor the
15
* names of its contributors may be used to endorse or promote products
16
* derived from this software without specific prior written permission.
18
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
* DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY
22
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
* ***** END LICENSE BLOCK ***** */
31
define('ace/theme/eclipse', ['require', 'exports', 'module' , 'ace/lib/dom'], function(require, exports, module) {
34
exports.isDark = false;
35
exports.cssText = ".ace-eclipse .ace_gutter {\
37
border-right: 1px solid rgb(159, 159, 159);\
38
color: rgb(136, 136, 136);\
40
.ace-eclipse .ace_print-margin {\
44
.ace-eclipse .ace_scroller {\
45
background-color: #FFFFFF;\
47
.ace-eclipse .ace_fold {\
48
background-color: rgb(60, 76, 114);\
50
.ace-eclipse .ace_text-layer {\
52
.ace-eclipse .ace_cursor {\
53
border-left: 2px solid black;\
55
.ace-eclipse .ace_storage,\
56
.ace-eclipse .ace_keyword,\
57
.ace-eclipse .ace_variable {\
58
color: rgb(127, 0, 85);\
60
.ace-eclipse .ace_constant.ace_buildin {\
61
color: rgb(88, 72, 246);\
63
.ace-eclipse .ace_constant.ace_library {\
64
color: rgb(6, 150, 14);\
66
.ace-eclipse .ace_function {\
67
color: rgb(60, 76, 114);\
69
.ace-eclipse .ace_string {\
70
color: rgb(42, 0, 255);\
72
.ace-eclipse .ace_comment {\
73
color: rgb(63, 127, 95);\
75
.ace-eclipse .ace_comment.ace_doc {\
76
color: rgb(63, 95, 191);\
78
.ace-eclipse .ace_comment.ace_doc.ace_tag {\
79
color: rgb(127, 159, 191);\
81
.ace-eclipse .ace_constant.ace_numeric {\
83
.ace-eclipse .ace_tag {\
84
color: rgb(63, 127, 127);\
86
.ace-eclipse .ace_type {\
87
color: rgb(127, 0, 127);\
89
.ace-eclipse .ace_xml-pe {\
90
color: rgb(104, 104, 91);\
92
.ace-eclipse .ace_marker-layer .ace_selection {\
93
background: rgb(181, 213, 255);\
95
.ace-eclipse .ace_marker-layer .ace_bracket {\
96
margin: -1px 0 0 -1px;\
97
border: 1px solid rgb(192, 192, 192);\
99
.ace-eclipse .ace_meta.ace_tag {\
100
color:rgb(63, 127, 127);\
102
.ace-eclipse .ace_entity.ace_other.ace_attribute-name {\
103
color:rgb(127, 0, 127);\
105
.ace-eclipse .ace_marker-layer .ace_step {\
106
background: rgb(255, 255, 0);\
108
.ace-eclipse .ace_marker-layer .ace_active-line {\
109
background: rgb(232, 242, 254);\
111
.ace-eclipse .ace_marker-layer .ace_selected-word {\
112
border: 1px solid rgb(181, 213, 255);\
114
.ace-eclipse .ace_indent-guide {\
115
background: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==\") right repeat-y;\
118
exports.cssClass = "ace-eclipse";
120
var dom = require("../lib/dom");
121
dom.importCssString(exports.cssText, exports.cssClass);