-
Notifications
You must be signed in to change notification settings - Fork 0
/
zombie.less
127 lines (108 loc) · 2.38 KB
/
zombie.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
@background: #171514;
@foreground: #a89f8a;
._zombie_gutters{
.CodeMirror-gutter-elt {
background: #505050;
color: #fff;
}
.inline-widget .CodeMirror-gutter-elt {
color: #767676;
}
}
.cm-s-zombie-theme {
.CodeMirror-scroll {
background-color: @background;
color: @foreground;
}
.CodeMirror-focused {
color: #c0c0c0;
._zombie_gutters();
}
.CodeMirror-activeline{
.CodeMirror-activeline-background{
background: #211e1c;
}
._zombie_gutters();
}
.CodeMirror-cursor {
border-left: 1px solid #fff;
}
.CodeMirror-gutters {
background-color: @background;
border-right: none;
}
.CodeMirror-selected {
//background: #333f48;
background: #2c2826;
}
.CodeMirror-focused {
background: #2c2826;
}
.CodeMirror-matchingbracket,
.CodeMirror-matchingtag {
position: relative;
color: @foreground !important;
background-color: transparent;
display: inline-block;
&:before{
content: ' ';
position: absolute;
display: block;
width: 100%;
height: 100%;
background-color: rgba(199, 158, 137, 0.2);
box-shadow: 0px 0px 10px rgba(255, 228, 89, 0.5);
border-radius: 2em;
}
}
.CodeMirror-overwrite .CodeMirror-cursor {
border-left: none !important;
border-bottom: 1px solid #fff;
}
.CodeMirror-code{
.cm-atom{
color:#675889;
font-weight: bold;
}
.cm-attribute{color:#ffffff;}
.cm-string{color:#3f9320;}
.cm-def{color:#cc9e55; font-weight: 500;}
.cm-hr {color:#d68686;}
.cm-number{color:#478d3a;}
.cm-property {color:#a38e60;}
.cm-operator{color:#696969;}
.cm-meta{color:#c6c797;}
.cm-variable{color:#b19a67;}
.cm-variable-2{color:#9b8f74;}
.cm-variable-3{color:#9b8f74;}
.cm-bracket {color:#bfaf74;}
.cm-comment {color: #5f5f5f;}
.cm-error, .cm-minus {color: #dc322f;}
.cm-header {color: #d85896;}
.cm-link {color: #837fdb; text-decoration: none;}
.cm-rangeinfo {color: #6c71c4;}
.cm-keyword{color:#4a6e96; font-weight: bold;}
.cm-builtin, .cm-quote {color: #f9fabc;}
.cm-qualifier{color:#87954d;}
.cm-tag{color:#fed6af;}
.cm-tab{
position: relative;
&:before{
background-color: rgba(180, 180, 180, 0.03);
display: block;
content: ' ';
width: 100%;
margin: 0 auto;
position: absolute;
border-right: 1px solid rgba(255,255,255,0.05);
}
}
}
}
#image-holder,
#not-editor {
background-color: @background;
}
#image-holder {
color: @foreground;
}