forked from chechnyan/Zenburn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Zenburn.less
102 lines (84 loc) · 2.23 KB
/
Zenburn.less
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
@background: #404040;
@foreground: #f6f3e8;
/* Code Styling */
.CodeMirror, .CodeMirror-scroll {
background-color: @background;
color: @foreground;
}
.CodeMirror-focused .CodeMirror-activeline-background {
background: #505050;
}
&.show-line-padding .CodeMirror-focused .CodeMirror-activeline-background {
box-shadow: inset 15px 0 0 0 #000;
}
.CodeMirror-focused .CodeMirror-activeline {
.CodeMirror-gutter-elt {
background: #505050;
color: #fff;
}
.inline-widget .CodeMirror-gutter-elt {
color: #767676;
}
}
.cm-atom{color:#cc9495}
.cm-attribute{color:#d6d6d6}
.cm-string{color:#C89191}
.cm-def{color:#9B859D}
.cm-hr {color: #d68686}
.cm-number{color: #d68686}
.cm-property {color: #d6d6d6}
.cm-operator{color:#9F9D6D}
.cm-variable-2{color:#CEDF99}
.cm-meta{color:#D6D7AF}
.cm-variable, .cm-variable-3,.cm-bracket {color: @foreground;}
.cm-comment {color: #7F9F7F}
.cm-error, .cm-minus {color: #dc322f}
.cm-header {color: #d85896}
.cm-link {color: #b77fdb; text-decoration: none;}
.cm-rangeinfo {color: #6c71c4}
.cm-keyword{color:#DFC47D}
.cm-builtin, .cm-quote {color: #D6D7AF}
.cm-qualifier{color:#9B703E}
.cm-tag{color:#fed6af}
/* Extra CSS */
.CodeMirror.find-highlighting div.CodeMirror-selected,
.CodeMirror .CodeMirror.find-highlighting div.CodeMirror-selected {
background: red;
}
.CodeMirror-cursor {
border-left: 1px solid #fff;
}
.cm-keymap-fat-cursor .CodeMirror-cursor {
border-left: none;
background: rgba(255, 255, 255, 0.5);
}
.CodeMirror-gutters {
background-color: @background;
border-right: none;
}
.CodeMirror-focused .CodeMirror-activeline .CodeMirror-gutter-elt {
color: #c0c0c0;
}
.CodeMirror .CodeMirror-selected {
background: #333f48;
}
.CodeMirror-focused .CodeMirror-selected {
background: #6a6a6a;
}
.CodeMirror-matchingbracket, .CodeMirror-matchingtag {
/* Ensure visibility against gray inline editor background */
background-color: #7b7b7b;
color: @foreground !important;
}
.CodeMirror-overwrite .CodeMirror-cursor {
border-left: none !important;
border-bottom: 1px solid #fff;
}
/* Non-editor styling */
#image-holder,
#not-editor {
background-color: @background;
}
#image-holder {
color: @foreground;
}