source: EcnlProtoTool/trunk/webapp/webmrbc/ace/theme-twilight.js@ 321

Last change on this file since 321 was 321, checked in by coas-nagasima, 7 years ago

文字コードを設定

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/javascript;charset=UTF-8
File size: 2.7 KB
Line 
1define("ace/theme/twilight",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
2
3exports.isDark = true;
4exports.cssClass = "ace-twilight";
5exports.cssText = ".ace-twilight .ace_gutter {\
6background: #232323;\
7color: #E2E2E2\
8}\
9.ace-twilight .ace_print-margin {\
10width: 1px;\
11background: #232323\
12}\
13.ace-twilight {\
14background-color: #141414;\
15color: #F8F8F8\
16}\
17.ace-twilight .ace_cursor {\
18color: #A7A7A7\
19}\
20.ace-twilight .ace_marker-layer .ace_selection {\
21background: rgba(221, 240, 255, 0.20)\
22}\
23.ace-twilight.ace_multiselect .ace_selection.ace_start {\
24box-shadow: 0 0 3px 0px #141414;\
25}\
26.ace-twilight .ace_marker-layer .ace_step {\
27background: rgb(102, 82, 0)\
28}\
29.ace-twilight .ace_marker-layer .ace_bracket {\
30margin: -1px 0 0 -1px;\
31border: 1px solid rgba(255, 255, 255, 0.25)\
32}\
33.ace-twilight .ace_marker-layer .ace_active-line {\
34background: rgba(255, 255, 255, 0.031)\
35}\
36.ace-twilight .ace_gutter-active-line {\
37background-color: rgba(255, 255, 255, 0.031)\
38}\
39.ace-twilight .ace_marker-layer .ace_selected-word {\
40border: 1px solid rgba(221, 240, 255, 0.20)\
41}\
42.ace-twilight .ace_invisible {\
43color: rgba(255, 255, 255, 0.25)\
44}\
45.ace-twilight .ace_keyword,\
46.ace-twilight .ace_meta {\
47color: #CDA869\
48}\
49.ace-twilight .ace_constant,\
50.ace-twilight .ace_constant.ace_character,\
51.ace-twilight .ace_constant.ace_character.ace_escape,\
52.ace-twilight .ace_constant.ace_other,\
53.ace-twilight .ace_heading,\
54.ace-twilight .ace_markup.ace_heading,\
55.ace-twilight .ace_support.ace_constant {\
56color: #CF6A4C\
57}\
58.ace-twilight .ace_invalid.ace_illegal {\
59color: #F8F8F8;\
60background-color: rgba(86, 45, 86, 0.75)\
61}\
62.ace-twilight .ace_invalid.ace_deprecated {\
63text-decoration: underline;\
64font-style: italic;\
65color: #D2A8A1\
66}\
67.ace-twilight .ace_support {\
68color: #9B859D\
69}\
70.ace-twilight .ace_fold {\
71background-color: #AC885B;\
72border-color: #F8F8F8\
73}\
74.ace-twilight .ace_support.ace_function {\
75color: #DAD085\
76}\
77.ace-twilight .ace_list,\
78.ace-twilight .ace_markup.ace_list,\
79.ace-twilight .ace_storage {\
80color: #F9EE98\
81}\
82.ace-twilight .ace_entity.ace_name.ace_function,\
83.ace-twilight .ace_meta.ace_tag,\
84.ace-twilight .ace_variable {\
85color: #AC885B\
86}\
87.ace-twilight .ace_string {\
88color: #8F9D6A\
89}\
90.ace-twilight .ace_string.ace_regexp {\
91color: #E9C062\
92}\
93.ace-twilight .ace_comment {\
94font-style: italic;\
95color: #5F5A60\
96}\
97.ace-twilight .ace_variable {\
98color: #7587A6\
99}\
100.ace-twilight .ace_xml-pe {\
101color: #494949\
102}\
103.ace-twilight .ace_indent-guide {\
104background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWMQERFpYLC1tf0PAAgOAnPnhxyiAAAAAElFTkSuQmCC) right repeat-y\
105}";
106
107var dom = require("../lib/dom");
108dom.importCssString(exports.cssText, exports.cssClass);
109});
Note: See TracBrowser for help on using the repository browser.