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/dreamweaver', ['require', 'exports', 'module' , 'ace/lib/dom'], function(require, exports, module) {
32
exports.isDark = false;
33
exports.cssClass = "ace-dreamweaver";
34
exports.cssText = ".ace-dreamweaver .ace_gutter {\
38
.ace-dreamweaver .ace_print-margin {\
42
.ace-dreamweaver .ace_scroller {\
43
background-color: #FFFFFF;\
45
.ace-dreamweaver .ace_fold {\
46
background-color: #757AD8;\
48
.ace-dreamweaver .ace_text-layer {\
50
.ace-dreamweaver .ace_cursor {\
51
border-left: 2px solid black;\
53
.ace-dreamweaver .ace_overwrite-cursors .ace_cursor {\
55
border-bottom: 1px solid black;\
57
.ace-dreamweaver .ace_invisible {\
58
color: rgb(191, 191, 191);\
60
.ace-dreamweaver .ace_storage,\
61
.ace-dreamweaver .ace_keyword {\
64
.ace-dreamweaver .ace_constant.ace_buildin {\
65
color: rgb(88, 72, 246);\
67
.ace-dreamweaver .ace_constant.ace_language {\
68
color: rgb(88, 92, 246);\
70
.ace-dreamweaver .ace_constant.ace_library {\
71
color: rgb(6, 150, 14);\
73
.ace-dreamweaver .ace_invalid {\
74
background-color: rgb(153, 0, 0);\
77
.ace-dreamweaver .ace_support.ace_function {\
78
color: rgb(60, 76, 114);\
80
.ace-dreamweaver .ace_support.ace_constant {\
81
color: rgb(6, 150, 14);\
83
.ace-dreamweaver .ace_support.ace_type,\
84
.ace-dreamweaver .ace_support.ace_class {\
87
.ace-dreamweaver .ace_support.ace_php_tag {\
90
.ace-dreamweaver .ace_keyword.ace_operator {\
91
color: rgb(104, 118, 135);\
93
.ace-dreamweaver .ace_string {\
96
.ace-dreamweaver .ace_comment {\
97
color: rgb(76, 136, 107);\
99
.ace-dreamweaver .ace_comment.ace_doc {\
100
color: rgb(0, 102, 255);\
102
.ace-dreamweaver .ace_comment.ace_doc.ace_tag {\
103
color: rgb(128, 159, 191);\
105
.ace-dreamweaver .ace_constant.ace_numeric {\
106
color: rgb(0, 0, 205);\
108
.ace-dreamweaver .ace_variable {\
111
.ace-dreamweaver .ace_xml-pe {\
112
color: rgb(104, 104, 91);\
114
.ace-dreamweaver .ace_entity.ace_name.ace_function {\
117
.ace-dreamweaver .ace_markup.ace_heading {\
118
color: rgb(12, 7, 255);\
120
.ace-dreamweaver .ace_markup.ace_list {\
121
color:rgb(185, 6, 144);\
123
.ace-dreamweaver .ace_marker-layer .ace_selection {\
124
background: rgb(181, 213, 255);\
126
.ace-dreamweaver .ace_marker-layer .ace_step {\
127
background: rgb(252, 255, 0);\
129
.ace-dreamweaver .ace_marker-layer .ace_stack {\
130
background: rgb(164, 229, 101);\
132
.ace-dreamweaver .ace_marker-layer .ace_bracket {\
133
margin: -1px 0 0 -1px;\
134
border: 1px solid rgb(192, 192, 192);\
136
.ace-dreamweaver .ace_marker-layer .ace_active-line {\
137
background: rgba(0, 0, 0, 0.07);\
139
.ace-dreamweaver .ace_marker-layer .ace_selected-word {\
140
background: rgb(250, 250, 255);\
141
border: 1px solid rgb(200, 200, 250);\
143
.ace-dreamweaver .ace_meta.ace_tag {\
146
.ace-dreamweaver .ace_meta.ace_tag.ace_anchor {\
149
.ace-dreamweaver .ace_meta.ace_tag.ace_form {\
152
.ace-dreamweaver .ace_meta.ace_tag.ace_image {\
155
.ace-dreamweaver .ace_meta.ace_tag.ace_script {\
158
.ace-dreamweaver .ace_meta.ace_tag.ace_style {\
161
.ace-dreamweaver .ace_meta.ace_tag.ace_table {\
164
.ace-dreamweaver .ace_string.ace_regex {\
165
color: rgb(255, 0, 0)\
167
.ace-dreamweaver .ace_indent-guide {\
168
background: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==\") right repeat-y;\
171
var dom = require("../lib/dom");
172
dom.importCssString(exports.cssText, exports.cssClass);