1 | /* |
---|
2 | Name: DuoTone-Light |
---|
3 | Author: by Bram de Haan, adapted from DuoTone themes by Simurai (http://simurai.com/projects/2016/01/01/duotone-themes) |
---|
4 | |
---|
5 | CodeMirror template by Jan T. Sott (https://github.com/idleberg), adapted by Bram de Haan (https://github.com/atelierbram/) |
---|
6 | */ |
---|
7 | |
---|
8 | .cm-s-duotone-light.CodeMirror { background: #faf8f5; color: #b29762; } |
---|
9 | .cm-s-duotone-light div.CodeMirror-selected { background: #e3dcce !important; } |
---|
10 | .cm-s-duotone-light .CodeMirror-gutters { background: #faf8f5; border-right: 0px; } |
---|
11 | .cm-s-duotone-light .CodeMirror-linenumber { color: #cdc4b1; } |
---|
12 | |
---|
13 | /* begin cursor */ |
---|
14 | .cm-s-duotone-light .CodeMirror-cursor { border-left: 1px solid #93abdc; /* border-left: 1px solid #93abdc80; */ border-right: .5em solid #93abdc; /* border-right: .5em solid #93abdc80; */ opacity: .5; } |
---|
15 | .cm-s-duotone-light .CodeMirror-activeline-background { background: #e3dcce; /* background: #e3dcce80; */ opacity: .5; } |
---|
16 | .cm-s-duotone-light .cm-fat-cursor .CodeMirror-cursor { background: #93abdc; /* #93abdc80; */ opacity: .5; } |
---|
17 | /* end cursor */ |
---|
18 | |
---|
19 | .cm-s-duotone-light span.cm-atom, .cm-s-duotone-light span.cm-number, .cm-s-duotone-light span.cm-keyword, .cm-s-duotone-light span.cm-variable, .cm-s-duotone-light span.cm-attribute, .cm-s-duotone-light span.cm-quote, .cm-s-duotone-light-light span.cm-hr, .cm-s-duotone-light-light span.cm-link { color: #063289; } |
---|
20 | |
---|
21 | .cm-s-duotone-light span.cm-property { color: #b29762; } |
---|
22 | .cm-s-duotone-light span.cm-punctuation, .cm-s-duotone-light span.cm-unit, .cm-s-duotone-light span.cm-negative { color: #063289; } |
---|
23 | .cm-s-duotone-light span.cm-string, .cm-s-duotone-light span.cm-operator { color: #1659df; } |
---|
24 | .cm-s-duotone-light span.cm-positive { color: #896724; } |
---|
25 | |
---|
26 | .cm-s-duotone-light span.cm-variable-2, .cm-s-duotone-light span.cm-variable-3, .cm-s-duotone-light span.cm-string-2, .cm-s-duotone-light span.cm-url { color: #896724; } |
---|
27 | .cm-s-duotone-light span.cm-def, .cm-s-duotone-light span.cm-tag, .cm-s-duotone-light span.cm-builtin, .cm-s-duotone-light span.cm-qualifier, .cm-s-duotone-light span.cm-header, .cm-s-duotone-light span.cm-em { color: #2d2006; } |
---|
28 | .cm-s-duotone-light span.cm-bracket, .cm-s-duotone-light span.cm-comment { color: #b6ad9a; } |
---|
29 | |
---|
30 | /* using #f00 red for errors, don't think any of the colorscheme variables will stand out enough, ... maybe by giving it a background-color ... */ |
---|
31 | /* .cm-s-duotone-light span.cm-error { background: #896724; color: #728fcb; } */ |
---|
32 | .cm-s-duotone-light span.cm-error, .cm-s-duotone-light span.cm-invalidchar { color: #f00; } |
---|
33 | |
---|
34 | .cm-s-duotone-light span.cm-header { font-weight: normal; } |
---|
35 | .cm-s-duotone-light .CodeMirror-matchingbracket { text-decoration: underline; color: #faf8f5 !important; } |
---|
36 | |
---|