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/clouds_midnight', ['require', 'exports', 'module' , 'ace/lib/dom'], function(require, exports, module) {
33
exports.isDark = true;
34
exports.cssClass = "ace-clouds-midnight";
35
exports.cssText = ".ace-clouds-midnight .ace_gutter {\
39
.ace-clouds-midnight .ace_print-margin {\
43
.ace-clouds-midnight .ace_scroller {\
44
background-color: #191919\
46
.ace-clouds-midnight .ace_text-layer {\
49
.ace-clouds-midnight .ace_cursor {\
50
border-left: 2px solid #7DA5DC\
52
.ace-clouds-midnight .ace_overwrite-cursors .ace_cursor {\
54
border-bottom: 1px solid #7DA5DC\
56
.ace-clouds-midnight .ace_marker-layer .ace_selection {\
59
.ace-clouds-midnight.ace_multiselect .ace_selection.ace_start {\
60
box-shadow: 0 0 3px 0px #191919;\
63
.ace-clouds-midnight .ace_marker-layer .ace_step {\
64
background: rgb(102, 82, 0)\
66
.ace-clouds-midnight .ace_marker-layer .ace_bracket {\
67
margin: -1px 0 0 -1px;\
68
border: 1px solid #BFBFBF\
70
.ace-clouds-midnight .ace_marker-layer .ace_active-line {\
71
background: rgba(215, 215, 215, 0.031)\
73
.ace-clouds-midnight .ace_gutter-active-line {\
74
background-color: rgba(215, 215, 215, 0.031)\
76
.ace-clouds-midnight .ace_marker-layer .ace_selected-word {\
77
border: 1px solid #000000\
79
.ace-clouds-midnight .ace_invisible {\
82
.ace-clouds-midnight .ace_keyword,\
83
.ace-clouds-midnight .ace_meta,\
84
.ace-clouds-midnight .ace_support.ace_constant.ace_property-value {\
87
.ace-clouds-midnight .ace_keyword.ace_operator {\
90
.ace-clouds-midnight .ace_keyword.ace_other.ace_unit {\
93
.ace-clouds-midnight .ace_constant.ace_language {\
96
.ace-clouds-midnight .ace_constant.ace_numeric {\
99
.ace-clouds-midnight .ace_constant.ace_character.ace_entity {\
102
.ace-clouds-midnight .ace_invalid {\
104
background-color: #E92E2E\
106
.ace-clouds-midnight .ace_fold {\
107
background-color: #927C5D;\
108
border-color: #929292\
110
.ace-clouds-midnight .ace_storage,\
111
.ace-clouds-midnight .ace_support.ace_class,\
112
.ace-clouds-midnight .ace_support.ace_function,\
113
.ace-clouds-midnight .ace_support.ace_other,\
114
.ace-clouds-midnight .ace_support.ace_type {\
117
.ace-clouds-midnight .ace_string {\
120
.ace-clouds-midnight .ace_comment {\
123
.ace-clouds-midnight .ace_entity.ace_name.ace_tag,\
124
.ace-clouds-midnight .ace_entity.ace_other.ace_attribute-name {\
127
.ace-clouds-midnight .ace_markup.ace_underline {\
128
text-decoration: underline\
130
.ace-clouds-midnight .ace_indent-guide {\
131
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWOQlJT8z1BeXv4fAA2KA6+h9Z+2AAAAAElFTkSuQmCC) right repeat-y\
134
var dom = require("../lib/dom");
135
dom.importCssString(exports.cssText, exports.cssClass);