1
/* ***** BEGIN LICENSE BLOCK *****
2
* Distributed under the BSD license:
4
* Copyright 2011 Irakli Gozalishvili. All rights reserved.
5
* Permission is hereby granted, free of charge, to any person obtaining a copy
6
* of this software and associated documentation files (the "Software"), to
7
* deal in the Software without restriction, including without limitation the
8
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
9
* sell copies of the Software, and to permit persons to whom the Software is
10
* furnished to do so, subject to the following conditions:
12
* The above copyright notice and this permission notice shall be included in
13
* all copies or substantial portions of the Software.
15
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22
* ***** END LICENSE BLOCK ***** */
24
define('ace/theme/chaos', ['require', 'exports', 'module' , 'ace/lib/dom'], function(require, exports, module) {
26
exports.isDark = true;
27
exports.cssClass = "ace-chaos";
28
exports.cssText = ".ace-chaos .ace_gutter {\
31
border-right: 1px solid #282828;\
33
.ace-chaos .ace_gutter-cell.ace_warning {\
34
background-image: none;\
40
.ace-chaos .ace_gutter-cell.ace_error {\
41
background-position: -6px center;\
42
background-image: none;\
48
.ace-chaos .ace_print-margin {\
49
border-left: 1px solid #555;\
53
.ace-chaos .ace_scroller {\
54
background-color: #161616;\
56
.ace-chaos .ace_text-layer {\
60
.ace-chaos .ace_cursor {\
61
border-left: 2px solid #FFFFFF;\
63
.ace-chaos .ace_cursor.ace_overwrite {\
65
border-bottom: 1px solid #FFFFFF;\
67
.ace-chaos .ace_marker-layer .ace_selection {\
70
.ace-chaos .ace_marker-layer .ace_step {\
71
background: rgb(198, 219, 174);\
73
.ace-chaos .ace_marker-layer .ace_bracket {\
74
margin: -1px 0 0 -1px;\
75
border: 1px solid #FCE94F;\
77
.ace-chaos .ace_marker-layer .ace_active-line {\
80
.ace-chaos .ace_gutter-active-line {\
81
background-color: #222;\
83
.ace-chaos .ace_invisible {\
86
.ace-chaos .ace_keyword {\
89
.ace-chaos .ace_keyword.ace_operator {\
92
.ace-chaos .ace_constant {\
95
.ace-chaos .ace_constant.ace_language {\
98
.ace-chaos .ace_constant.ace_library {\
101
.ace-chaos .ace_constant.ace_numeric {\
104
.ace-chaos .ace_invalid {\
106
background-color:#990000;\
108
.ace-chaos .ace_invalid.ace_deprecated {\
110
background-color:#990000;\
112
.ace-chaos .ace_support {\
115
.ace-chaos .ace_support.ace_function {\
118
.ace-chaos .ace_function {\
121
.ace-chaos .ace_string {\
124
.ace-chaos .ace_comment {\
127
padding-bottom: 0px;\
129
.ace-chaos .ace_variable {\
132
.ace-chaos .ace_meta.ace_tag {\
135
.ace-chaos .ace_entity.ace_other.ace_attribute-name {\
138
.ace-chaos .ace_markup.ace_underline {\
139
text-decoration: underline;\
141
.ace-chaos .ace_fold-widget {\
144
.ace-chaos .ace_fold-widget:hover {\
147
.ace-chaos .ace_fold-widget.ace_start,\
148
.ace-chaos .ace_fold-widget.ace_end,\
149
.ace-chaos .ace_fold-widget.ace_closed{\
154
.ace-chaos .ace_fold-widget.ace_start:after {\
157
.ace-chaos .ace_fold-widget.ace_end:after {\
160
.ace-chaos .ace_fold-widget.ace_closed:after {\
164
var dom = require("../lib/dom");
165
dom.importCssString(exports.cssText, exports.cssClass);
b'\\ No newline at end of file'