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/xcode', ['require', 'exports', 'module' , 'ace/lib/dom'], function(require, exports, module) {
33
exports.isDark = false;
34
exports.cssClass = "ace-xcode";
35
exports.cssText = "/* THIS THEME WAS AUTOGENERATED BY Theme.tmpl.css (UUID: EE3AD170-2B7F-4DE1-B724-C75F13FE0085) */\
36
.ace-xcode .ace_gutter {\
40
.ace-xcode .ace_print-margin {\
44
.ace-xcode .ace_scroller {\
45
background-color: #FFFFFF\
47
.ace-xcode .ace_text-layer {\
50
.ace-xcode .ace_cursor {\
51
border-left: 2px solid #000000\
53
.ace-xcode .ace_overwrite-cursors .ace_cursor {\
55
border-bottom: 1px solid #000000\
57
.ace-xcode .ace_marker-layer .ace_selection {\
60
.ace-xcode.ace_multiselect .ace_selection.ace_start {\
61
box-shadow: 0 0 3px 0px #FFFFFF;\
64
.ace-xcode .ace_marker-layer .ace_step {\
65
background: rgb(198, 219, 174)\
67
.ace-xcode .ace_marker-layer .ace_bracket {\
68
margin: -1px 0 0 -1px;\
69
border: 1px solid #BFBFBF\
71
.ace-xcode .ace_marker-layer .ace_active-line {\
72
background: rgba(0, 0, 0, 0.071)\
74
.ace-xcode .ace_gutter-active-line {\
75
background-color: rgba(0, 0, 0, 0.071)\
77
.ace-xcode .ace_marker-layer .ace_selected-word {\
78
border: 1px solid #B5D5FF\
80
.ace-xcode .ace_constant.ace_language,\
81
.ace-xcode .ace_keyword,\
82
.ace-xcode .ace_meta,\
83
.ace-xcode .ace_variable.ace_language {\
86
.ace-xcode .ace_invisible {\
89
.ace-xcode .ace_constant.ace_character,\
90
.ace-xcode .ace_constant.ace_other {\
93
.ace-xcode .ace_constant.ace_numeric {\
96
.ace-xcode .ace_entity.ace_other.ace_attribute-name,\
97
.ace-xcode .ace_support.ace_constant,\
98
.ace-xcode .ace_support.ace_function {\
101
.ace-xcode .ace_fold {\
102
background-color: #C800A4;\
103
border-color: #000000\
105
.ace-xcode .ace_entity.ace_name.ace_tag,\
106
.ace-xcode .ace_support.ace_class,\
107
.ace-xcode .ace_support.ace_type {\
110
.ace-xcode .ace_storage {\
113
.ace-xcode .ace_string {\
116
.ace-xcode .ace_comment {\
119
.ace-xcode .ace_indent-guide {\
120
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==) right repeat-y;\
123
var dom = require("../lib/dom");
124
dom.importCssString(exports.cssText, exports.cssClass);