|
11 | 11 | --editor-heading-font-size: 1.1em; /* not used */ |
12 | 12 | --editor-code-color: greenyellow; |
13 | 13 | --editor-text-in-brackets-color: #f9ee98; /* yellowish */ |
| 14 | + --editor-text-in-parens-color: #dddddd; /* lightgrey */ |
14 | 15 | --editor-strong-color: salmon; |
15 | 16 | --editor-emphasis-color: salmon; |
16 | 17 | --editor-emphasis-font-style: italic; |
17 | 18 | --editor-list-element-color: deepskyblue; |
18 | | - --editor-checkbox-color: lightgrey; /* not used */ |
| 19 | + --editor-checkbox-color: lightgrey; |
| 20 | + --editor-checkbox-checked-color: #FFCB6B; /* orange */ |
19 | 21 | } |
20 | 22 | /* not used: to take effect the proper section must be uncommented */ |
21 | 23 |
|
|
25 | 27 | /* font-weight: var(--editor-heading-font-weight); */ |
26 | 28 | /* font-size: var(--editor-heading-font-size); */ |
27 | 29 | } |
| 30 | +.cm-header { |
| 31 | + color: var(--editor-heading-color) !important; |
| 32 | +} |
28 | 33 | /*---------------------------------------------------------------------------*/ |
29 | 34 |
|
30 | 35 | /*------ Editor: inline code and codeblocks ---------------------------------*/ |
31 | 36 | .ace_support.ace_function { |
32 | 37 | color: var(--editor-code-color) !important; |
33 | 38 | } |
| 39 | +.cm-comment { |
| 40 | + color: var(--editor-code-color) !important; |
| 41 | +} |
34 | 42 | /*---------------------------------------------------------------------------*/ |
35 | 43 |
|
36 | 44 | /*------ Editor: text in brackets [ ] ---------------------------------------*/ |
37 | 45 | .ace_string { |
38 | 46 | color: var(--editor-text-in-brackets-color) !important; |
39 | 47 | } |
| 48 | +.cm-link-text { |
| 49 | + color: var(--editor-text-in-brackets-color) !important; |
| 50 | +} |
| 51 | +/*---------------------------------------------------------------------------*/ |
| 52 | + |
| 53 | +/*------ Editor: text/link in parens ( ) ------------ ----------------------*/ |
| 54 | +.cm-string.cm-url { |
| 55 | + color: var(--editor-text-in-parens-color) !important; |
| 56 | +} |
40 | 57 | /*---------------------------------------------------------------------------*/ |
41 | 58 |
|
42 | 59 | /*------ Editor: strong -----------------------------------------------------*/ |
43 | 60 | .ace_string.ace_strong { |
44 | 61 | color: var(--editor-strong-color) !important; |
45 | 62 | } |
| 63 | +.cm-strong { |
| 64 | + color: var(--editor-strong-color) !important; |
| 65 | +} |
46 | 66 | /*---------------------------------------------------------------------------*/ |
47 | 67 |
|
48 | 68 | /*------ Editor: italics ----------------------------------------------------*/ |
49 | 69 | .ace_string.ace_emphasis { |
50 | 70 | color: var(--editor-emphasis-color) !important; |
51 | 71 | font-style: var(--editor-emphasis-font-style); |
52 | 72 | } |
| 73 | +.cm-em { |
| 74 | + color: var(--editor-emphasis-color) !important; |
| 75 | +} |
53 | 76 | /*---------------------------------------------------------------------------*/ |
54 | 77 |
|
55 | 78 | /*------ Editor: list elements and checkbox elements ------------------------*/ |
56 | 79 | .ace_list { |
57 | 80 | color: var(--editor-list-element-color) !important; |
58 | 81 | } |
| 82 | +.cm-variable-2, .cm-variable-3, .cm-keyword { |
| 83 | + color: var(--editor-list-element-color) !important; |
| 84 | +} |
59 | 85 | /*---------------------------------------------------------------------------*/ |
60 | 86 |
|
61 | 87 | /*------ Editor: checkbox [ ] and [x] ---------------------------------------*/ |
62 | | -/* |
63 | 88 | .ace_variable { |
64 | 89 | color: var(--editor-checkbox-color) !important; |
65 | 90 | } |
66 | | -*/ |
| 91 | +.cm-meta { |
| 92 | + color: var(--editor-checkbox-checked-color) !important; |
| 93 | +} |
| 94 | +.cm-property { |
| 95 | + color: var(--editor-checkbox-checked-color) !important; |
| 96 | +} |
67 | 97 | /*---------------------------------------------------------------------------*/ |
68 | 98 |
|
69 | 99 | /*------ Notebook and note list panes: Dim items ----------------------------*/ |
|
0 commit comments