-
-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathcm.css
More file actions
68 lines (62 loc) · 1.6 KB
/
Copy pathcm.css
File metadata and controls
68 lines (62 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
@import 'codemirror-theme-vars/base.css';
:root {
--cm-font-family: 'Input Mono', 'FiraCode', monospace;
}
html:not(.dark) {
--cm-foreground: #8e8f8b;
--cm-background: #0000;
--cm-comment: #a0ada0;
--cm-string: #b56959;
--cm-literal: #2f8a89;
--cm-number: #296aa3;
--cm-keyword: #1c6b48;
--cm-function: #6c7834;
--cm-boolean: #1c6b48;
--cm-constant: #a65e2b;
--cm-deleted: #a14f55;
--cm-variable: #ad944c;
--cm-class: #2993a3;
--cm-builtin: #ab5959;
--cm-property: #b58451;
--cm-namespace: #b05a78;
--cm-punctuation: #8e8f8b;
--cm-decorator: #bd8f8f;
--cm-regex: #ab5e3f;
--cm-json-property: #698c96;
--cm-selection-background: #44444410;
--cm-line-number-gutter: #fafafa;
}
html.dark {
--cm-foreground: #858585;
--cm-background: #0000;
--cm-comment: #758575;
--cm-string: #d48372;
--cm-literal: #429988;
--cm-keyword: #4d9375;
--cm-boolean: #1c6b48;
--cm-number: #6394bf;
--cm-variable: #c2b36e;
--cm-function: #a1b567;
--cm-deleted: #a14f55;
--cm-class: #54b1bf;
--cm-builtin: #e0a569;
--cm-property: #dd8e6e;
--cm-namespace: #db889a;
--cm-punctuation: #858585;
--cm-decorator: #bd8f8f;
--cm-regex: #ab5e3f;
--cm-json-property: #6b8b9e;
--cm-line-number: #888888;
--cm-line-highlight-background: #444444;
--cm-selection-background: #44444450;
--cm-line-number-gutter: #1a1a1a;
}
.CodeMirror {
height: inherit !important;
width: 100% !important;
font-family: var(--cm-font-family) !important;
font-size: 13px !important;
}
.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
background-color: var(--cm-background) !important;
}