corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 ace.define("ace/theme/tomorrow_night_bright",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
2  
3 exports.isDark = true;
4 exports.cssClass = "ace-tomorrow-night-bright";
5 exports.cssText = ".ace-tomorrow-night-bright .ace_gutter {\
6 background: #1a1a1a;\
7 color: #DEDEDE\
8 }\
9 .ace-tomorrow-night-bright .ace_print-margin {\
10 width: 1px;\
11 background: #1a1a1a\
12 }\
13 .ace-tomorrow-night-bright {\
14 background-color: #000000;\
15 color: #DEDEDE\
16 }\
17 .ace-tomorrow-night-bright .ace_cursor {\
18 color: #9F9F9F\
19 }\
20 .ace-tomorrow-night-bright .ace_marker-layer .ace_selection {\
21 background: #424242\
22 }\
23 .ace-tomorrow-night-bright.ace_multiselect .ace_selection.ace_start {\
24 box-shadow: 0 0 3px 0px #000000;\
25 }\
26 .ace-tomorrow-night-bright .ace_marker-layer .ace_step {\
27 background: rgb(102, 82, 0)\
28 }\
29 .ace-tomorrow-night-bright .ace_marker-layer .ace_bracket {\
30 margin: -1px 0 0 -1px;\
31 border: 1px solid #888888\
32 }\
33 .ace-tomorrow-night-bright .ace_marker-layer .ace_highlight {\
34 border: 1px solid rgb(110, 119, 0);\
35 border-bottom: 0;\
36 box-shadow: inset 0 -1px rgb(110, 119, 0);\
37 margin: -1px 0 0 -1px;\
38 background: rgba(255, 235, 0, 0.1)\
39 }\
40 .ace-tomorrow-night-bright .ace_marker-layer .ace_active-line {\
41 background: #2A2A2A\
42 }\
43 .ace-tomorrow-night-bright .ace_gutter-active-line {\
44 background-color: #2A2A2A\
45 }\
46 .ace-tomorrow-night-bright .ace_stack {\
47 background-color: rgb(66, 90, 44)\
48 }\
49 .ace-tomorrow-night-bright .ace_marker-layer .ace_selected-word {\
50 border: 1px solid #888888\
51 }\
52 .ace-tomorrow-night-bright .ace_invisible {\
53 color: #343434\
54 }\
55 .ace-tomorrow-night-bright .ace_keyword,\
56 .ace-tomorrow-night-bright .ace_meta,\
57 .ace-tomorrow-night-bright .ace_storage,\
58 .ace-tomorrow-night-bright .ace_storage.ace_type,\
59 .ace-tomorrow-night-bright .ace_support.ace_type {\
60 color: #C397D8\
61 }\
62 .ace-tomorrow-night-bright .ace_keyword.ace_operator {\
63 color: #70C0B1\
64 }\
65 .ace-tomorrow-night-bright .ace_constant.ace_character,\
66 .ace-tomorrow-night-bright .ace_constant.ace_language,\
67 .ace-tomorrow-night-bright .ace_constant.ace_numeric,\
68 .ace-tomorrow-night-bright .ace_keyword.ace_other.ace_unit,\
69 .ace-tomorrow-night-bright .ace_support.ace_constant,\
70 .ace-tomorrow-night-bright .ace_variable.ace_parameter {\
71 color: #E78C45\
72 }\
73 .ace-tomorrow-night-bright .ace_constant.ace_other {\
74 color: #EEEEEE\
75 }\
76 .ace-tomorrow-night-bright .ace_invalid {\
77 color: #CED2CF;\
78 background-color: #DF5F5F\
79 }\
80 .ace-tomorrow-night-bright .ace_invalid.ace_deprecated {\
81 color: #CED2CF;\
82 background-color: #B798BF\
83 }\
84 .ace-tomorrow-night-bright .ace_fold {\
85 background-color: #7AA6DA;\
86 border-color: #DEDEDE\
87 }\
88 .ace-tomorrow-night-bright .ace_entity.ace_name.ace_function,\
89 .ace-tomorrow-night-bright .ace_support.ace_function,\
90 .ace-tomorrow-night-bright .ace_variable {\
91 color: #7AA6DA\
92 }\
93 .ace-tomorrow-night-bright .ace_support.ace_class,\
94 .ace-tomorrow-night-bright .ace_support.ace_type {\
95 color: #E7C547\
96 }\
97 .ace-tomorrow-night-bright .ace_heading,\
98 .ace-tomorrow-night-bright .ace_markup.ace_heading,\
99 .ace-tomorrow-night-bright .ace_string {\
100 color: #B9CA4A\
101 }\
102 .ace-tomorrow-night-bright .ace_entity.ace_name.ace_tag,\
103 .ace-tomorrow-night-bright .ace_entity.ace_other.ace_attribute-name,\
104 .ace-tomorrow-night-bright .ace_meta.ace_tag,\
105 .ace-tomorrow-night-bright .ace_string.ace_regexp,\
106 .ace-tomorrow-night-bright .ace_variable {\
107 color: #D54E53\
108 }\
109 .ace-tomorrow-night-bright .ace_comment {\
110 color: #969896\
111 }\
112 .ace-tomorrow-night-bright .ace_c9searchresults.ace_keyword {\
113 color: #C2C280\
114 }\
115 .ace-tomorrow-night-bright .ace_indent-guide {\
116 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWNgYGBgYFBXV/8PAAJoAXX4kT2EAAAAAElFTkSuQmCC) right repeat-y\
117 }";
118  
119 var dom = require("../lib/dom");
120 dom.importCssString(exports.cssText, exports.cssClass);
121 });