-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmain.less
More file actions
58 lines (48 loc) · 1.32 KB
/
main.less
File metadata and controls
58 lines (48 loc) · 1.32 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
/**
* Theme VisualStudio Copyright (c) 2014 Miguel Castillo.
*
* Licensed under MIT
*/
.CodeMirror .CodeMirror-scroll {
background-color: #fefefe;
color: black;
}
.CodeMirror .CodeMirror-gutters {
background-color: #fefefe;
}
.CodeMirror .CodeMirror-linenumber {
color: #0E97A1;
background-color: #fefefe;
}
.CodeMirror .CodeMirror-matchingbracket {
color: black;
background-color: #dedede;
}
.CodeMirror .CodeMirror-linebackground {
outline: 2px solid #dddddd;
}
.CodeMirror-activeline-background,
.CodeMirror-activeline .CodeMirror-gutter-elt {
background: transparent !important;
}
.CodeMirror-activeline-background {
outline: 2px solid #dddddd;
}
.CodeMirror .cm-matchhighlight {
background-color: yellow;
}
.CodeMirror .CodeMirror-selectedtext {
background-color: #ADD6FF !important;
}
.CodeMirror .cm-atom { color: blue; }
.CodeMirror .cm-qualifier { color: #800000; }
.CodeMirror .cm-def { color: black; }
.CodeMirror .cm-keyword { color: blue; }
.CodeMirror .cm-comment { color: green; }
.CodeMirror .cm-string {color: #800000;}
.CodeMirror .cm-string-2 {color: #800000;}
.CodeMirror .cm-variable { color: black; }
.CodeMirror .cm-variable-2 { color: black; }
.CodeMirror .cm-tag { color: #800000; }
.CodeMirror .cm-attribute { color: red; }
.CodeMirror .cm-property { color: black; }