ckeditor/samples/toolbarconfigurator/lib/codemirror/neo.css
author indvd00m (gotoindvdum[at]gmail[dot]com)
Thu, 15 Dec 2016 18:10:20 +0300
changeset 0 44d330dccc59
permissions -rw-r--r--
Init sample
     1 /* neo theme for codemirror */
     2 
     3 /* Color scheme */
     4 
     5 .cm-s-neo.CodeMirror {
     6   background-color:#ffffff;
     7   color:#2e383c;
     8   line-height:1.4375;
     9 }
    10 .cm-s-neo .cm-comment {color:#75787b}
    11 .cm-s-neo .cm-keyword, .cm-s-neo .cm-property {color:#1d75b3}
    12 .cm-s-neo .cm-atom,.cm-s-neo .cm-number {color:#75438a}
    13 .cm-s-neo .cm-node,.cm-s-neo .cm-tag {color:#9c3328}
    14 .cm-s-neo .cm-string {color:#b35e14}
    15 .cm-s-neo .cm-variable,.cm-s-neo .cm-qualifier {color:#047d65}
    16 
    17 
    18 /* Editor styling */
    19 
    20 .cm-s-neo pre {
    21   padding:0;
    22 }
    23 
    24 .cm-s-neo .CodeMirror-gutters {
    25   border:none;
    26   border-right:10px solid transparent;
    27   background-color:transparent;
    28 }
    29 
    30 .cm-s-neo .CodeMirror-linenumber {
    31   padding:0;
    32   color:#e0e2e5;
    33 }
    34 
    35 .cm-s-neo .CodeMirror-guttermarker { color: #1d75b3; }
    36 .cm-s-neo .CodeMirror-guttermarker-subtle { color: #e0e2e5; }