-
Notifications
You must be signed in to change notification settings - Fork 3
/
dune.css
executable file
·111 lines (84 loc) · 2.24 KB
/
dune.css
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/* SWATCHES ---------------------------------------------------------------------- */
span.cm-bracket { color: #0076be; }
span.cm-builtin { color: #0076be; }
span.cm-def { color: #0076be; }
span.cm-header { color: #0076be; }
span.cm-meta { color: #0076be; }
span.cm-operator { color: #0076be; }
span.cm-qualifier { color: #0076be; }
span.cm-tag { color: #0076be; }
span.cm-atom { color: #ca611b; }
span.cm-link { color: #ca611b; }
span.cm-number { color: #ca611b; }
span.cm-string { color: #ca611b; }
span.cm-string-2 { color: #ca611b; }
span.cm-variable { color: #ca611b; }
span.cm-variable-2 { color: #ca611b; }
span.cm-variable-3 { color: #ca611b; }
span.cm-attribute { color: #7e2800; }
span.cm-property { color: #7e2800; } /* property after string */
span.cm-comment { color: #aaa27b; }
span.cm-error { color: #e93fd2; }
span.cm-keyword { color: #333128; }
/* MISC ---------------------------------------------------------------------- */
.CodeMirror {
line-height: 1.4;
}
.CodeMirror-scroll {
background: #f2eee1;
color: #6f6d64;
}
.CodeMirror-cursor {
border-left: 1px solid #000 !important;
}
.CodeMirror-overwrite .CodeMirror-cursor {
border-bottom: 1px solid #000 !important;
border-left: none !important;
}
.CodeMirror-gutters {
background: #f2eee1;
border-right: 1px solid #e5e2ce;
}
.CodeMirror-linenumber {
color: #b4ad87;
}
.CodeMirror-selected {
background: #d4ccb1;
}
/* Active Line */
.CodeMirror-activeline-background {
background: #f7f6ef !important;
}
.CodeMirror-focused .CodeMirror-activeline .CodeMirror-gutter-elt {
color: #643900;
background-color: transparent !important;
}
/* Matching Brackets and Tags */
.CodeMirror-matchingbracket {
background: #bce8fc !important;
color: #000 !important;
}
.CodeMirror-matchingtag {
background: #bce8fc !important;
}
.CodeMirror-focused .CodeMirror-activeline .CodeMirror-nonmatchingbracket {
color: #e93fd2 !important;
}
/* Search Match */
/*
.CodeMirror-searching {
background-color: #ffcd2d;
color: #000 !important;
}
.CodeMirror-searching.searching-current-match {
background-color: #ff8500;
}
*/
/* Non-editor styling */
#image-holder,
#not-editor {
background-color: #f2eee1;
}
#image-holder {
color: #6f6d64;
}