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/mono_industrial', ['require', 'exports', 'module' , 'ace/lib/dom'], function(require, exports, module) {
33
exports.isDark = true;
34
exports.cssClass = "ace-mono-industrial";
35
exports.cssText = ".ace-mono-industrial .ace_gutter {\
39
.ace-mono-industrial .ace_print-margin {\
43
.ace-mono-industrial .ace_scroller {\
44
background-color: #222C28\
46
.ace-mono-industrial .ace_text-layer {\
49
.ace-mono-industrial .ace_cursor {\
50
border-left: 2px solid #FFFFFF\
52
.ace-mono-industrial .ace_overwrite-cursors .ace_cursor {\
54
border-bottom: 1px solid #FFFFFF\
56
.ace-mono-industrial .ace_marker-layer .ace_selection {\
57
background: rgba(145, 153, 148, 0.40)\
59
.ace-mono-industrial.ace_multiselect .ace_selection.ace_start {\
60
box-shadow: 0 0 3px 0px #222C28;\
63
.ace-mono-industrial .ace_marker-layer .ace_step {\
64
background: rgb(102, 82, 0)\
66
.ace-mono-industrial .ace_marker-layer .ace_bracket {\
67
margin: -1px 0 0 -1px;\
68
border: 1px solid rgba(102, 108, 104, 0.50)\
70
.ace-mono-industrial .ace_marker-layer .ace_active-line {\
71
background: rgba(12, 13, 12, 0.25)\
73
.ace-mono-industrial .ace_gutter-active-line {\
74
background-color: rgba(12, 13, 12, 0.25)\
76
.ace-mono-industrial .ace_marker-layer .ace_selected-word {\
77
border: 1px solid rgba(145, 153, 148, 0.40)\
79
.ace-mono-industrial .ace_invisible {\
80
color: rgba(102, 108, 104, 0.50)\
82
.ace-mono-industrial .ace_string {\
83
background-color: #151C19;\
86
.ace-mono-industrial .ace_keyword,\
87
.ace-mono-industrial .ace_meta {\
90
.ace-mono-industrial .ace_constant,\
91
.ace-mono-industrial .ace_constant.ace_character,\
92
.ace-mono-industrial .ace_constant.ace_character.ace_escape,\
93
.ace-mono-industrial .ace_constant.ace_numeric,\
94
.ace-mono-industrial .ace_constant.ace_other {\
97
.ace-mono-industrial .ace_entity.ace_name.ace_function,\
98
.ace-mono-industrial .ace_keyword.ace_operator,\
99
.ace-mono-industrial .ace_variable {\
102
.ace-mono-industrial .ace_invalid {\
104
background-color: rgba(153, 0, 0, 0.68)\
106
.ace-mono-industrial .ace_support.ace_constant {\
109
.ace-mono-industrial .ace_fold {\
110
background-color: #A8B3AB;\
111
border-color: #FFFFFF\
113
.ace-mono-industrial .ace_support.ace_function {\
116
.ace-mono-industrial .ace_entity.ace_name,\
117
.ace-mono-industrial .ace_support.ace_class,\
118
.ace-mono-industrial .ace_support.ace_type {\
121
.ace-mono-industrial .ace_storage {\
124
.ace-mono-industrial .ace_variable.ace_language,\
125
.ace-mono-industrial .ace_variable.ace_parameter {\
128
.ace-mono-industrial .ace_comment {\
130
background-color: #151C19\
132
.ace-mono-industrial .ace_entity.ace_other.ace_attribute-name {\
135
.ace-mono-industrial .ace_markup.ace_underline {\
136
text-decoration: underline\
138
.ace-mono-industrial .ace_entity.ace_name.ace_tag {\
141
.ace-mono-industrial .ace_indent-guide {\
142
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWNQ0tH4zzBz5sz/ABAOBECKH+evAAAAAElFTkSuQmCC) right repeat-y\
146
var dom = require("../lib/dom");
147
dom.importCssString(exports.cssText, exports.cssClass);