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/tomorrow_night_eighties', ['require', 'exports', 'module' , 'ace/lib/dom'], function(require, exports, module) {
33
exports.isDark = true;
34
exports.cssClass = "ace-tomorrow-night-eighties";
35
exports.cssText = ".ace-tomorrow-night-eighties .ace_gutter {\
39
.ace-tomorrow-night-eighties .ace_print-margin {\
43
.ace-tomorrow-night-eighties .ace_scroller {\
44
background-color: #2D2D2D\
46
.ace-tomorrow-night-eighties .ace_constant.ace_other,\
47
.ace-tomorrow-night-eighties .ace_text-layer {\
50
.ace-tomorrow-night-eighties .ace_cursor {\
51
border-left: 2px solid #CCCCCC\
53
.ace-tomorrow-night-eighties .ace_overwrite-cursors .ace_cursor {\
55
border-bottom: 1px solid #CCCCCC\
57
.ace-tomorrow-night-eighties .ace_marker-layer .ace_selection {\
60
.ace-tomorrow-night-eighties.ace_multiselect .ace_selection.ace_start {\
61
box-shadow: 0 0 3px 0px #2D2D2D;\
64
.ace-tomorrow-night-eighties .ace_marker-layer .ace_step {\
65
background: rgb(102, 82, 0)\
67
.ace-tomorrow-night-eighties .ace_marker-layer .ace_bracket {\
68
margin: -1px 0 0 -1px;\
69
border: 1px solid #6A6A6A\
71
.ace-tomorrow-night-eighties .ace_marker-layer .ace_active-line {\
74
.ace-tomorrow-night-eighties .ace_gutter-active-line {\
75
background-color: #393939\
77
.ace-tomorrow-night-eighties .ace_marker-layer .ace_selected-word {\
78
border: 1px solid #515151\
80
.ace-tomorrow-night-eighties .ace_invisible {\
83
.ace-tomorrow-night-eighties .ace_keyword,\
84
.ace-tomorrow-night-eighties .ace_meta,\
85
.ace-tomorrow-night-eighties .ace_storage,\
86
.ace-tomorrow-night-eighties .ace_storage.ace_type,\
87
.ace-tomorrow-night-eighties .ace_support.ace_type {\
90
.ace-tomorrow-night-eighties .ace_keyword.ace_operator {\
93
.ace-tomorrow-night-eighties .ace_constant.ace_character,\
94
.ace-tomorrow-night-eighties .ace_constant.ace_language,\
95
.ace-tomorrow-night-eighties .ace_constant.ace_numeric,\
96
.ace-tomorrow-night-eighties .ace_keyword.ace_other.ace_unit,\
97
.ace-tomorrow-night-eighties .ace_support.ace_constant,\
98
.ace-tomorrow-night-eighties .ace_variable.ace_parameter {\
101
.ace-tomorrow-night-eighties .ace_invalid {\
103
background-color: #F2777A\
105
.ace-tomorrow-night-eighties .ace_invalid.ace_deprecated {\
107
background-color: #CC99CC\
109
.ace-tomorrow-night-eighties .ace_fold {\
110
background-color: #6699CC;\
111
border-color: #CCCCCC\
113
.ace-tomorrow-night-eighties .ace_entity.ace_name.ace_function,\
114
.ace-tomorrow-night-eighties .ace_support.ace_function,\
115
.ace-tomorrow-night-eighties .ace_variable {\
118
.ace-tomorrow-night-eighties .ace_support.ace_class,\
119
.ace-tomorrow-night-eighties .ace_support.ace_type {\
122
.ace-tomorrow-night-eighties .ace_markup.ace_heading,\
123
.ace-tomorrow-night-eighties .ace_string {\
126
.ace-tomorrow-night-eighties .ace_comment {\
129
.ace-tomorrow-night-eighties .ace_entity.ace_name.ace_tag,\
130
.ace-tomorrow-night-eighties .ace_entity.ace_other.ace_attribute-name,\
131
.ace-tomorrow-night-eighties .ace_meta.ace_tag,\
132
.ace-tomorrow-night-eighties .ace_variable {\
135
.ace-tomorrow-night-eighties .ace_markup.ace_underline {\
136
text-decoration: underline\
138
.ace-tomorrow-night-eighties .ace_indent-guide {\
139
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWPQ1dX9z7Bq1ar/ABE1BITwhhuFAAAAAElFTkSuQmCC) right repeat-y\
142
var dom = require("../lib/dom");
143
dom.importCssString(exports.cssText, exports.cssClass);