corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 ace.define("ace/theme/merbivore_soft",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
2  
3 exports.isDark = true;
4 exports.cssClass = "ace-merbivore-soft";
5 exports.cssText = ".ace-merbivore-soft .ace_gutter {\
6 background: #262424;\
7 color: #E6E1DC\
8 }\
9 .ace-merbivore-soft .ace_print-margin {\
10 width: 1px;\
11 background: #262424\
12 }\
13 .ace-merbivore-soft {\
14 background-color: #1C1C1C;\
15 color: #E6E1DC\
16 }\
17 .ace-merbivore-soft .ace_cursor {\
18 color: #FFFFFF\
19 }\
20 .ace-merbivore-soft .ace_marker-layer .ace_selection {\
21 background: #494949\
22 }\
23 .ace-merbivore-soft.ace_multiselect .ace_selection.ace_start {\
24 box-shadow: 0 0 3px 0px #1C1C1C;\
25 }\
26 .ace-merbivore-soft .ace_marker-layer .ace_step {\
27 background: rgb(102, 82, 0)\
28 }\
29 .ace-merbivore-soft .ace_marker-layer .ace_bracket {\
30 margin: -1px 0 0 -1px;\
31 border: 1px solid #404040\
32 }\
33 .ace-merbivore-soft .ace_marker-layer .ace_active-line {\
34 background: #333435\
35 }\
36 .ace-merbivore-soft .ace_gutter-active-line {\
37 background-color: #333435\
38 }\
39 .ace-merbivore-soft .ace_marker-layer .ace_selected-word {\
40 border: 1px solid #494949\
41 }\
42 .ace-merbivore-soft .ace_invisible {\
43 color: #404040\
44 }\
45 .ace-merbivore-soft .ace_entity.ace_name.ace_tag,\
46 .ace-merbivore-soft .ace_keyword,\
47 .ace-merbivore-soft .ace_meta,\
48 .ace-merbivore-soft .ace_meta.ace_tag,\
49 .ace-merbivore-soft .ace_storage {\
50 color: #FC803A\
51 }\
52 .ace-merbivore-soft .ace_constant,\
53 .ace-merbivore-soft .ace_constant.ace_character,\
54 .ace-merbivore-soft .ace_constant.ace_character.ace_escape,\
55 .ace-merbivore-soft .ace_constant.ace_other,\
56 .ace-merbivore-soft .ace_support.ace_type {\
57 color: #68C1D8\
58 }\
59 .ace-merbivore-soft .ace_constant.ace_character.ace_escape {\
60 color: #B3E5B4\
61 }\
62 .ace-merbivore-soft .ace_constant.ace_language {\
63 color: #E1C582\
64 }\
65 .ace-merbivore-soft .ace_constant.ace_library,\
66 .ace-merbivore-soft .ace_string,\
67 .ace-merbivore-soft .ace_support.ace_constant {\
68 color: #8EC65F\
69 }\
70 .ace-merbivore-soft .ace_constant.ace_numeric {\
71 color: #7FC578\
72 }\
73 .ace-merbivore-soft .ace_invalid,\
74 .ace-merbivore-soft .ace_invalid.ace_deprecated {\
75 color: #FFFFFF;\
76 background-color: #FE3838\
77 }\
78 .ace-merbivore-soft .ace_fold {\
79 background-color: #FC803A;\
80 border-color: #E6E1DC\
81 }\
82 .ace-merbivore-soft .ace_comment,\
83 .ace-merbivore-soft .ace_meta {\
84 font-style: italic;\
85 color: #AC4BB8\
86 }\
87 .ace-merbivore-soft .ace_entity.ace_other.ace_attribute-name {\
88 color: #EAF1A3\
89 }\
90 .ace-merbivore-soft .ace_indent-guide {\
91 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWOQkpLyZfD09PwPAAfYAnaStpHRAAAAAElFTkSuQmCC) right repeat-y\
92 }";
93  
94 var dom = require("../lib/dom");
95 dom.importCssString(exports.cssText, exports.cssClass);
96 });