ace-theme-mcode
Version:
mcode theme for use with react-ace
142 lines (139 loc) • 4.19 kB
JavaScript
ace.define("ace/theme/mcode_light",["require","exports","module","ace/lib/dom"], function(acequire, exports, module) {
exports.isDark = false;
exports.cssClass = "ace-mcode_light";
exports.cssText = ".ace-mcode_light .ace_gutter {\
background: #EDF8FF;\
color: #1EAAFF;\
// width: 40px !important;\
border-right: 1px solid #bcdafb;\
overflow : hidden;\
}\
.ace_layer.ace_gutter-layer.ace_folding-enabled {\
// width: 100% !important;\
// padding-left: 0 !important;\
// padding-right: 8px !important;\
}\
.ace_gutter-cell {\
// max-width: 100% !important;\
// padding-left: 0 !important;\
// padding-right: 8px !important;\
}\
.ace-mcode_light .ace_print-margin {\
width: 1px;\
background: #e8e8e8;\
}\
.ace-mcode_light {\
background-color: #FFFFFF;\
line-height: 24px !important;\
// color: #64B7E9;\
}\
.ace-mcode_light .ace_cursor {\
color: #1EAAFF;\
}\
.ace-mcode_light .ace_invisible {\
color: rgb(191, 191, 191);\
}\
.ace-mcode_light .ace_constant.ace_buildin {\
color: rgb(88, 72, 246);\
}\
.ace-mcode_light .ace_constant.ace_language {\
color: rgb(88, 92, 246);\
}\
.ace-mcode_light .ace_constant.ace_library {\
color: rgb(6, 150, 14);\
}\
.ace-mcode_light .ace_invalid {\
background-color: rgb(153, 0, 0);\
color: white;\
}\
.ace-mcode_light .ace_fold {\
}\
.ace-mcode_light .ace_support.ace_function {\
color: rgb(60, 76, 114);\
}\
.ace-mcode_light .ace_support.ace_constant {\
color: rgb(6, 150, 14);\
}\
.ace-mcode_light .ace_support.ace_type,\
.ace-mcode_light .ace_support.ace_class\
.ace-mcode_light .ace_support.ace_other {\
color: rgb(109, 121, 222);\
}\
.ace-mcode_light .ace_variable.ace_parameter {\
font-style:italic;\
color:#FD971F;\
}\
.ace-mcode_light .ace_keyword.ace_operator {\
color: rgb(104, 118, 135);\
}\
.ace-mcode_light .ace_comment {\
color: #236e24;\
}\
.ace-mcode_light .ace_comment.ace_doc {\
color: #236e24;\
}\
.ace-mcode_light .ace_comment.ace_doc.ace_tag {\
color: #236e24;\
}\
.ace-mcode_light .ace_constant.ace_numeric {\
color: rgb(0, 0, 205);\
}\
.ace-mcode_light .ace_variable {\
color: rgb(49, 132, 149);\
}\
.ace-mcode_light .ace_xml-pe {\
color: rgb(104, 104, 91);\
}\
.ace-mcode_light .ace_entity.ace_name.ace_function {\
color: #0000A2;\
}\
.ace-mcode_light .ace_heading {\
color: rgb(12, 7, 255);\
}\
.ace-mcode_light .ace_list {\
color:rgb(185, 6, 144);\
}\
.ace-mcode_light .ace_marker-layer .ace_selection {\
background: rgb(181, 213, 255);\
}\
.ace-mcode_light .ace_marker-layer .ace_step {\
background: rgb(252, 255, 0);\
}\
.ace-mcode_light .ace_marker-layer .ace_stack {\
background: rgb(164, 229, 101);\
}\
.ace-mcode_light .ace_marker-layer .ace_bracket {\
margin: -1px 0 0 -1px;\
border: 1px solid rgb(192, 192, 192);\
}\
.ace-mcode_light .ace_marker-layer .ace_active-line {\
background: #F3F4F1;\
}\
.ace-mcode_light .ace_gutter-active-line {\
background-color : #E0EDF4;\
}\
.ace-mcode_light .ace_marker-layer .ace_selected-word {\
background: rgb(250, 250, 255);\
border: 1px solid rgb(200, 200, 250);\
}\
.ace-mcode_light .ace_storage,\
.ace-mcode_light .ace_keyword,\
.ace-mcode_light .ace_meta.ace_tag {\
color: rgb(147, 15, 128);\
}\
.ace-mcode_light .ace_string.ace_regex {\
color: rgb(255, 0, 0)\
}\
.ace-mcode_light .ace_string {\
color: #1A1AA6;\
}\
.ace-mcode_light .ace_entity.ace_other.ace_attribute-name {\
color: #994409;\
}\
.ace-mcode_light .ace_indent-guide {\
background: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==\") right repeat-y;\
}\
";
var dom = acequire("../lib/dom");
dom.importCssString(exports.cssText, exports.cssClass);
});