-
Notifications
You must be signed in to change notification settings - Fork 1
/
berrykai.moon
328 lines (262 loc) · 5.62 KB
/
berrykai.moon
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
{:delegate_to} = howl.util.table
background = '#0E1F23'
current = '#75715e'
selection = '#759557'
foreground = '#ffffff'
comment = '#75715e'
red = '#ff9da4'
darkred = '#8b0000'
orange = '#F0CE6C'
yellow = '#e6db74'
yellow_dark = '#75715e'
green = '#BBE85E'
aqua = '#99ffff'
blue = '#86AAD7'
purple = '#A282DB'
magenta = blue -- F92651
grey = '#595959'
grey_darker = '#383830'
grey_darkest = '#243336'
grey_light = '#a6a6a6'
embedded_bg = '#484848'
border_color = '#333333'
orangered = '#DC5E4A'
eee = '#EEEEEE'
d7 = '#D7DDDF'
-- General styling for context boxes (editor, command_line)
content_box = {
background:
color: background
border:
width: 1
color: border_color
border_right:
width: 3
color: border_color
border_bottom:
width: 3
color: border_color
header:
background:
color: grey_darkest
border_bottom:
color: grey_darker
color: eee
font: bold: false -- true
padding: 1
footer:
background:
color: grey_darkest
border_top:
color: grey_darker
color: grey
font: bold: true
padding: 1
}
return {
window:
background:
color: background
status:
font: bold: true, italic: true
color: grey
info: color: grey_light
warning: color: orange
'error': color: red
:content_box
popup:
background:
color: grey_darkest
border:
color: grey
editor: delegate_to content_box, {
indicators:
default:
color: grey_light
title:
font: bold: false -- true
vi:
font: bold: true
caret:
color: grey_light
width: 1
current_line:
background: current
gutter:
color: comment
background:
color: grey_darkest
alpha: 0.6
}
flairs:
indentation_guide:
type: flair.PIPE,
foreground: comment,
:background,
line_width: 1
indentation_guide_1:
type: flair.PIPE,
foreground: grey_darker,
line_width: 1
indentation_guide_2:
type: flair.PIPE,
foreground: grey_darker,
line_width: 1
indentation_guide_3:
type: flair.PIPE,
foreground: grey_darker,
line_width: 1
edge_line:
type: flair.PIPE,
foreground: blue,
foreground_alpha: 0.3,
line_width: 0.5
search:
type: highlight.ROUNDED_RECTANGLE
foreground: black
foreground_alpha: 1
background: yellow
text_color: grey_darkest
height: 'text'
search_secondary:
type: flair.ROUNDED_RECTANGLE
background: yellow_dark
text_color: grey_darkest
height: 'text'
replace_strikeout:
type: flair.ROUNDED_RECTANGLE
foreground: black
background: red
text_color: black
height: 'text'
brace_highlight:
type: flair.RECTANGLE
text_color: foreground
background: '#0064b1'
height: 'text'
brace_highlight_secondary:
type: flair.RECTANGLE
foreground: '#0064b1'
text_color: foreground
line_width: 1
height: 'text'
list_selection:
type: flair.RECTANGLE
background: current
background_alpha: 0.3
list_highlight:
type: highlight.UNDERLINE
foreground: eee
text_color: eee
line_width: 2
cursor:
type: flair.RECTANGLE
background: foreground
width: 2
height: 'text'
block_cursor:
type: flair.ROUNDED_RECTANGLE,
background: foreground
text_color: background
height: 'text',
min_width: 'letter'
selection:
type: highlight.ROUNDED_RECTANGLE
background: selection
background_alpha: 0.4
min_width: 'letter'
styles:
default:
color: foreground
red: color: red
green: color: green
yellow: color: yellow
blue: color: blue
magenta: color: purple
cyan: color: aqua
popup:
background: grey_darkest
color: foreground
comment:
font: italic: true
color: comment
variable:
color: yellow
label:
color: orange
font: italic: true
key:
color: blue
font: bold: true
fdecl: -- function declaration
color: green
font: bold: false
keyword:
color: magenta
font: bold: true
class:
color: blue
font: bold: true
type_def:
color: green
font:
bold: true
definition:
color: yellow
function:
color: blue
font: bold: false -- true
type:
color: blue
font: italic: true
char: color: green
number: color: orange
operator: color: magenta
preproc: color: aqua
special: color: purple
tag: color: purple
member: color: red
info: color: blue
constant:
color: yellow
string:
color: yellow
-- color: orangered
regex:
color: green
background: embedded_bg
embedded:
color: blue
background: embedded_bg
-- Markup and visual styles
error:
font: italic: true
color: eee
background: darkred
warning:
font: italic: true
color: orange
h1:
font: bold: true
color: magenta
h2:
font: bold: true
color: aqua
h3:
font: italic: true
color: purple
emphasis:
font:
bold: true
italic: true
strong: font: italic: true
link_label: color: aqua
link_url: color: comment
table:
color: blue
background: embedded_bg
underline: true
addition: color: green
deletion: color: red
change: color: yellow
}