corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 ace.define("ace/theme/github",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
2  
3 exports.isDark = false;
4 exports.cssClass = "ace-github";
5 exports.cssText = "\
6 .ace-github .ace_gutter {\
7 background: #e8e8e8;\
8 color: #AAA;\
9 }\
10 .ace-github {\
11 background: #fff;\
12 color: #000;\
13 }\
14 .ace-github .ace_keyword {\
15 font-weight: bold;\
16 }\
17 .ace-github .ace_string {\
18 color: #D14;\
19 }\
20 .ace-github .ace_variable.ace_class {\
21 color: teal;\
22 }\
23 .ace-github .ace_constant.ace_numeric {\
24 color: #099;\
25 }\
26 .ace-github .ace_constant.ace_buildin {\
27 color: #0086B3;\
28 }\
29 .ace-github .ace_support.ace_function {\
30 color: #0086B3;\
31 }\
32 .ace-github .ace_comment {\
33 color: #998;\
34 font-style: italic;\
35 }\
36 .ace-github .ace_variable.ace_language {\
37 color: #0086B3;\
38 }\
39 .ace-github .ace_paren {\
40 font-weight: bold;\
41 }\
42 .ace-github .ace_boolean {\
43 font-weight: bold;\
44 }\
45 .ace-github .ace_string.ace_regexp {\
46 color: #009926;\
47 font-weight: normal;\
48 }\
49 .ace-github .ace_variable.ace_instance {\
50 color: teal;\
51 }\
52 .ace-github .ace_constant.ace_language {\
53 font-weight: bold;\
54 }\
55 .ace-github .ace_cursor {\
56 color: black;\
57 }\
58 .ace-github.ace_focus .ace_marker-layer .ace_active-line {\
59 background: rgb(255, 255, 204);\
60 }\
61 .ace-github .ace_marker-layer .ace_active-line {\
62 background: rgb(245, 245, 245);\
63 }\
64 .ace-github .ace_marker-layer .ace_selection {\
65 background: rgb(181, 213, 255);\
66 }\
67 .ace-github.ace_multiselect .ace_selection.ace_start {\
68 box-shadow: 0 0 3px 0px white;\
69 }\
70 .ace-github.ace_nobold .ace_line > span {\
71 font-weight: normal !important;\
72 }\
73 .ace-github .ace_marker-layer .ace_step {\
74 background: rgb(252, 255, 0);\
75 }\
76 .ace-github .ace_marker-layer .ace_stack {\
77 background: rgb(164, 229, 101);\
78 }\
79 .ace-github .ace_marker-layer .ace_bracket {\
80 margin: -1px 0 0 -1px;\
81 border: 1px solid rgb(192, 192, 192);\
82 }\
83 .ace-github .ace_gutter-active-line {\
84 background-color : rgba(0, 0, 0, 0.07);\
85 }\
86 .ace-github .ace_marker-layer .ace_selected-word {\
87 background: rgb(250, 250, 255);\
88 border: 1px solid rgb(200, 200, 250);\
89 }\
90 .ace-github .ace_invisible {\
91 color: #BFBFBF\
92 }\
93 .ace-github .ace_print-margin {\
94 width: 1px;\
95 background: #e8e8e8;\
96 }\
97 .ace-github .ace_indent-guide {\
98 background: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==\") right repeat-y;\
99 }";
100  
101 var dom = require("../lib/dom");
102 dom.importCssString(exports.cssText, exports.cssClass);
103 });