/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
1
/* ***** BEGIN LICENSE BLOCK *****
2
 * Distributed under the BSD license:
3
 *
4
 * Copyright (c) 2010, Ajax.org B.V.
5
 * All rights reserved.
6
 * 
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.
17
 * 
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.
28
 *
29
 * ***** END LICENSE BLOCK ***** */
30
31
define('ace/theme/monokai', ['require', 'exports', 'module' , 'ace/lib/dom'], function(require, exports, module) {
32
33
exports.isDark = true;
34
exports.cssClass = "ace-monokai";
35
exports.cssText = ".ace-monokai .ace_gutter {\
36
background: #2F3129;\
37
color: #8F908A\
38
}\
39
.ace-monokai .ace_print-margin {\
40
width: 1px;\
41
background: #555651\
42
}\
43
.ace-monokai .ace_scroller {\
44
background-color: #272822\
45
}\
46
.ace-monokai .ace_text-layer {\
47
color: #F8F8F2\
48
}\
49
.ace-monokai .ace_cursor {\
50
border-left: 2px solid #F8F8F0\
51
}\
52
.ace-monokai .ace_overwrite-cursors .ace_cursor {\
53
border-left: 0px;\
54
border-bottom: 1px solid #F8F8F0\
55
}\
56
.ace-monokai .ace_marker-layer .ace_selection {\
57
background: #49483E\
58
}\
59
.ace-monokai.ace_multiselect .ace_selection.ace_start {\
60
box-shadow: 0 0 3px 0px #272822;\
61
border-radius: 2px\
62
}\
63
.ace-monokai .ace_marker-layer .ace_step {\
64
background: rgb(102, 82, 0)\
65
}\
66
.ace-monokai .ace_marker-layer .ace_bracket {\
67
margin: -1px 0 0 -1px;\
68
border: 1px solid #49483E\
69
}\
70
.ace-monokai .ace_marker-layer .ace_active-line {\
71
background: #202020\
72
}\
73
.ace-monokai .ace_gutter-active-line {\
74
background-color: #272727\
75
}\
76
.ace-monokai .ace_marker-layer .ace_selected-word {\
77
border: 1px solid #49483E\
78
}\
79
.ace-monokai .ace_invisible {\
80
color: #52524d\
81
}\
82
.ace-monokai .ace_entity.ace_name.ace_tag,\
83
.ace-monokai .ace_keyword,\
84
.ace-monokai .ace_meta,\
85
.ace-monokai .ace_storage {\
86
color: #F92672\
87
}\
88
.ace-monokai .ace_constant.ace_character,\
89
.ace-monokai .ace_constant.ace_language,\
90
.ace-monokai .ace_constant.ace_numeric,\
91
.ace-monokai .ace_constant.ace_other {\
92
color: #AE81FF\
93
}\
94
.ace-monokai .ace_invalid {\
95
color: #F8F8F0;\
96
background-color: #F92672\
97
}\
98
.ace-monokai .ace_invalid.ace_deprecated {\
99
color: #F8F8F0;\
100
background-color: #AE81FF\
101
}\
102
.ace-monokai .ace_support.ace_constant,\
103
.ace-monokai .ace_support.ace_function {\
104
color: #66D9EF\
105
}\
106
.ace-monokai .ace_fold {\
107
background-color: #A6E22E;\
108
border-color: #F8F8F2\
109
}\
110
.ace-monokai .ace_storage.ace_type,\
111
.ace-monokai .ace_support.ace_class,\
112
.ace-monokai .ace_support.ace_type {\
113
font-style: italic;\
114
color: #66D9EF\
115
}\
116
.ace-monokai .ace_entity.ace_name.ace_function,\
117
.ace-monokai .ace_entity.ace_other,\
118
.ace-monokai .ace_variable {\
119
color: #A6E22E\
120
}\
121
.ace-monokai .ace_variable.ace_parameter {\
122
font-style: italic;\
123
color: #FD971F\
124
}\
125
.ace-monokai .ace_string {\
126
color: #E6DB74\
127
}\
128
.ace-monokai .ace_comment {\
129
color: #75715E\
130
}\
131
.ace-monokai .ace_markup.ace_underline {\
132
text-decoration: underline\
133
}\
134
.ace-monokai .ace_indent-guide {\
135
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWNQ11D6z7Bq1ar/ABCKBG6g04U2AAAAAElFTkSuQmCC) right repeat-y\
136
}";
137
138
var dom = require("../lib/dom");
139
dom.importCssString(exports.cssText, exports.cssClass);
140
});