UNPKG

ace-theme-jimdo

Version:

A jimdo theme for the react-ace editor

98 lines (94 loc) 2.88 kB
ace.define("ace/theme/jimdo",["require","exports","module","ace/lib/dom"], function(acequire, exports, module) { var fontSize = 13; var lineHeight = fontSize * 2; var cursorHeight = lineHeight * .666; var cursorMarginTop = (lineHeight - cursorHeight) / 2; exports.isDark = false; exports.cssClass = "ace-jimdo"; exports.cssText = "\ .ace-jimdo {\ font-family: 'Courier', 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;\ font-size: " + fontSize + "px;\ line-height: " + lineHeight + "px;\ background-color: #FFFFFF;\ color: #4E5056;\ }\ .ace-jimdo .ace_gutter {\ color: #CACEDB;\ }\ .ace-jimdo div {\ font: inherit!important\ }\ .ace-jimdo .ace_print-margin {\ width: 1px;\ background: #e8e8e8;\ }\ .ace-jimdo .ace_cursor {\ color: #4E5056;\ height: " + cursorHeight + "px !important;\ margin-top: " + cursorMarginTop + "px;\ }\ .ace-jimdo .ace_marker-layer .ace_selection {\ background: #B5D5FF;\ }\ .ace-jimdo.ace_multiselect .ace_selection.ace_start {\ box-shadow: 0 0 3px 0px #FFFFFF;\ }\ .ace-jimdo .ace_marker-layer .ace_step {\ background: rgb(198, 219, 174);\ }\ .ace-jimdo .ace_marker-layer .ace_bracket {\ margin: -1px 0 0 -1px;\ border: 1px solid #BFBFBF;\ }\ .ace-jimdo .ace_marker-layer .ace_active-line {\ background: #F4F5F9;\ }\ .ace-jimdo .ace_gutter-active-line {\ background-color: #F4F5F9;\ }\ .ace-jimdo .ace_marker-layer .ace_selected-word {\ border: 1px solid #B5D5FF;\ }\ .ace-jimdo .ace_constant.ace_language,\ .ace-jimdo .ace_keyword,\ .ace-jimdo .ace_meta,\ .ace-jimdo .ace_variable.ace_language {\ color: #C800A4;\ }\ .ace-jimdo .ace_invisible {\ color: #BFBFBF;\ }\ .ace-jimdo .ace_constant.ace_character,\ .ace-jimdo .ace_constant.ace_other {\ color: #275A5E;\ }\ .ace-jimdo .ace_constant.ace_numeric {\ color: #3A00DC;\ }\ .ace-jimdo .ace_entity.ace_other.ace_attribute-name,\ .ace-jimdo .ace_support.ace_constant,\ .ace-jimdo .ace_support.ace_function {\ color: #450084;\ }\ .ace-jimdo .ace_fold {\ background-color: #C800A4;\ border-color: #000000;\ }\ .ace-jimdo .ace_entity.ace_name.ace_tag,\ .ace-jimdo .ace_support.ace_class,\ .ace-jimdo .ace_support.ace_type {\ color: #790EAD;\ }\ .ace-jimdo .ace_storage {\ color: #C900A4;\ }\ .ace-jimdo .ace_string {\ color: #DF0002;\ }\ .ace-jimdo .ace_comment {\ color: #008E00;\ }"; var dom = acequire("../lib/dom"); dom.importCssString(exports.cssText, exports.cssClass); });