corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 ace.define("ace/theme/solarized_light",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
2  
3 exports.isDark = false;
4 exports.cssClass = "ace-solarized-light";
5 exports.cssText = ".ace-solarized-light .ace_gutter {\
6 background: #fbf1d3;\
7 color: #333\
8 }\
9 .ace-solarized-light .ace_print-margin {\
10 width: 1px;\
11 background: #e8e8e8\
12 }\
13 .ace-solarized-light {\
14 background-color: #FDF6E3;\
15 color: #586E75\
16 }\
17 .ace-solarized-light .ace_cursor {\
18 color: #000000\
19 }\
20 .ace-solarized-light .ace_marker-layer .ace_selection {\
21 background: rgba(7, 54, 67, 0.09)\
22 }\
23 .ace-solarized-light.ace_multiselect .ace_selection.ace_start {\
24 box-shadow: 0 0 3px 0px #FDF6E3;\
25 }\
26 .ace-solarized-light .ace_marker-layer .ace_step {\
27 background: rgb(255, 255, 0)\
28 }\
29 .ace-solarized-light .ace_marker-layer .ace_bracket {\
30 margin: -1px 0 0 -1px;\
31 border: 1px solid rgba(147, 161, 161, 0.50)\
32 }\
33 .ace-solarized-light .ace_marker-layer .ace_active-line {\
34 background: #EEE8D5\
35 }\
36 .ace-solarized-light .ace_gutter-active-line {\
37 background-color : #EDE5C1\
38 }\
39 .ace-solarized-light .ace_marker-layer .ace_selected-word {\
40 border: 1px solid #073642\
41 }\
42 .ace-solarized-light .ace_invisible {\
43 color: rgba(147, 161, 161, 0.50)\
44 }\
45 .ace-solarized-light .ace_keyword,\
46 .ace-solarized-light .ace_meta,\
47 .ace-solarized-light .ace_support.ace_class,\
48 .ace-solarized-light .ace_support.ace_type {\
49 color: #859900\
50 }\
51 .ace-solarized-light .ace_constant.ace_character,\
52 .ace-solarized-light .ace_constant.ace_other {\
53 color: #CB4B16\
54 }\
55 .ace-solarized-light .ace_constant.ace_language {\
56 color: #B58900\
57 }\
58 .ace-solarized-light .ace_constant.ace_numeric {\
59 color: #D33682\
60 }\
61 .ace-solarized-light .ace_fold {\
62 background-color: #268BD2;\
63 border-color: #586E75\
64 }\
65 .ace-solarized-light .ace_entity.ace_name.ace_function,\
66 .ace-solarized-light .ace_entity.ace_name.ace_tag,\
67 .ace-solarized-light .ace_support.ace_function,\
68 .ace-solarized-light .ace_variable,\
69 .ace-solarized-light .ace_variable.ace_language {\
70 color: #268BD2\
71 }\
72 .ace-solarized-light .ace_storage {\
73 color: #073642\
74 }\
75 .ace-solarized-light .ace_string {\
76 color: #2AA198\
77 }\
78 .ace-solarized-light .ace_string.ace_regexp {\
79 color: #D30102\
80 }\
81 .ace-solarized-light .ace_comment,\
82 .ace-solarized-light .ace_entity.ace_other.ace_attribute-name {\
83 color: #93A1A1\
84 }\
85 .ace-solarized-light .ace_indent-guide {\
86 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWNgYGBgYHjy8NJ/AAjgA5fzQUmBAAAAAElFTkSuQmCC) right repeat-y\
87 }";
88  
89 var dom = require("../lib/dom");
90 dom.importCssString(exports.cssText, exports.cssClass);
91 });