forked from brian-guerrero/panda-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.less
More file actions
123 lines (96 loc) · 2.67 KB
/
theme.less
File metadata and controls
123 lines (96 loc) · 2.67 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
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
/* Colors */
@background: #292A2B;
@foreground: #ff2c6d;
@comment: #676B79;
@error: #FF2C6D;
@keyword: #FF75B5;
@white: #f3f3f3;
@light: #E6E6E6;
@blue : #45A9F9;
@light-blue : #6FC1FF;
@purple : #B084EB;
@green : #19f9d8;
@red : #FF2C6D;
@orange : #FFB86C;
@light-orange : lighten(@orange, 8%);
@pink : #FF75B5;
@light-pink : #FF9AC1;
/* SWATCHES ---------------------------------------------------------------------- */
.cm-builtin { color: @blue; }
.cm-def { color: @purple; }
.cm-header { color: @light; }
.cm-meta { color: @light; }
.cm-operator { color: @light-orange; }
.cm-qualifier { color: @orange; }
.cm-atom { color: @orange; }
.cm-link { color: @orange; }
.cm-number { color: @orange; }
.cm-string { color: @green; }
.cm-string-2 { color: @orange; }
.cm-variable { color: @orange; }
.cm-variable-2 { color: @pink; }
.cm-variable-3 { color: @light-pink; }
.cm-bracket { color: @light-orange; }
.cm-tag { color: @red; }
.cm-attribute { color: @orange; }
.cm-property { color: @light; }
.cm-comment { color: @comment; }
.cm-error { color: @red; }
.cm-keyword { color: @pink; }
/* MISC ---------------------------------------------------------------------- */
.CodeMirror, .CodeMirror-scroll {
background-color: @background;
color: @white;
}
.CodeMirror-gutters {
background: @background;
}
.CodeMirror-linenumber {
color: @comment;
}
.CodeMirror-cursor {
border-left-color: white !important;
}
.CodeMirror-selected {
background: rgba(99, 123, 156, 0.25) !important;
}
/* Active Line */
.CodeMirror-activeline-background {
background: @background !important;
}
.CodeMirror-focused .CodeMirror-activeline .CodeMirror-gutter-elt {
color: rgba(99, 123, 156, 0.12);
background-color: transparent !important;
}
/* Matching Brackets and Tags */
.CodeMirror-matchingbracket {
color: @light !important;
background: transparent !important;
border-bottom: 1px dashed @green !important;
}
.CodeMirror-matchingtag {
background: transparent !important;
border-bottom: 1px solid @comment !important;
}
/* Search Match */
.CodeMirror-searching {
background: rgba(99, 123, 156, 0.1) !important;
outline: 1px solid rgba(255,255,255,0.5);
}
.CodeMirror-searching.searching-current-match {
background-color: @light-orange !important;
}
.CodeMirror-searching.searching-last {
color: @light !important;
}
.CodeMirror-searching.searching-first {
color: @light !important;
}
/* Non-editor styling */
#image-holder,
#not-editor {
background-color: @background;
}
#image-holder {
color: @light;
}