-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcorrupt.moon
296 lines (246 loc) · 5.87 KB
/
corrupt.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
{:delegate_to} = howl.util.table
scheme = {
raisin_black: "#27212e"
white: "#ffffff"
mustard: "#ffe261"
roman_silver: "#716385"
old_lavender: "#91889b"
pearl_aqua: "#74dfc4"
african_violet: "#b381c5"
powder_blue: "#b4dce7"
hot_pink: "#EB64B9"
maximum_blue: "#40b4c4"
dark: "#111"
}
content_box = {
background:
color: scheme.dark
border:
width: 0
color: scheme.dark
border_right:
width: 0
color: scheme.dark
border_bottom:
width: 0
color: scheme.dark
header:
background:
color: scheme.dark
border_bottom:
color: scheme.dark
color: scheme.white
font: bold: false
padding: 0
footer:
background:
color: scheme.dark
border_top:
color: scheme.dark
color: scheme.hot_pink
padding: 0
}
return {
window:
background:
color: scheme.dark
status:
font:
bold: false
italic: true
color: scheme.white
info: color: scheme.white
warning: color: scheme.mustard
'error': color: scheme.hot_pink
:content_box
popup:
background:
color: scheme.raisin_black
border:
color: scheme.powder_blue
editor: delegate_to content_box, {
indicators:
default:
color: scheme.white
title:
font: bold: false
vi:
font: bold: true
caret:
color: scheme.dark
width: 1
current_line:
background: scheme.mustard
gutter:
color: scheme.old_lavender
background:
color: scheme.dark
}
flairs:
indentation_guide:
type: flair.PIPE,
foreground: scheme.old_lavender, -- ?
foreground_alpha: 0.5,
line_width: 0.5
indentation_guide_1:
type: flair.PIPE,
foreground: scheme.old_lavender,
foreground_alpha: 0.5,
line_width: 0.5
indentation_guide_2:
type: flair.PIPE,
foreground: scheme.old_lavender,
foreground_alpha: 0.5,
line_width: 0.5
indentation_guide_3:
type: flair.PIPE,
foreground: scheme.old_lavender,
foreground_alpha: 0.5,
line_width: 0.5
edge_line:
type: flair.PIPE,
foreground: scheme.old_lavender,
foreground_alpha: 0.5,
line_width: 0.5
search: -- selected search
type: highlight.ROUNDED_RECTANGLE
foreground_alpha: 1
background: scheme.hot_pink
text_color: scheme.raisin_black
background_alpha: 0.8
height: 'text'
search_secondary: -- non selected search
type: flair.ROUNDED_RECTANGLE
background: scheme.mustard
text_color: scheme.raisin_black
background_alpha: 0.8
height: 'text'
replace_strikeout:
type: flair.ROUNDED_RECTANGLE
foreground: scheme.white
background: scheme.raisin_black
text_color: scheme.white
height: 'text'
brace_highlight:
type: flair.RECTANGLE
text_color: scheme.pearl_aqua
height: 'text'
brace_highlight_secondary:
type: flair.RECTANGLE
text_color: scheme.hot_pink
height: 'text'
list_selection:
type: flair.RECTANGLE
background: scheme.hot_pink
background_alpha: 0.2
list_highlight:
type: highlight.UNDERLINE
foreground: scheme.hot_pink
text_color: scheme.white
line_width: 2
cursor:
type: flair.RECTANGLE
background: scheme.white
width: 2
height: 'text'
block_cursor:
type: flair.ROUNDED_RECTANGLE,
background: scheme.white
text_color: scheme.raisin_black
height: 'text',
min_width: 'letter'
selection:
type: highlight.ROUNDED_RECTANGLE
background: scheme.maximum_blue
background_alpha: 0.6
min_width: 'letter'
styles:
default:
color: scheme.white
red: color: scheme.white
green: color: scheme.white
yellow: color: scheme.white
blue: color: scheme.white
magenta: color: scheme.white
cyan: color: scheme.white
popup: -- ?
background: scheme.raisin_black
color: scheme.white
comment:
font: italic: true
color: scheme.old_lavender
variable:
color: scheme.white
label:
color: scheme.mustard
font: italic: true
key:
color: scheme.maximum_blue
font: bold: false
fdecl:
color: scheme.hot_pink
font: bold: false
keyword:
color: scheme.maximum_blue
font: bold: true
class:
color: scheme.hot_pink
type_def:
color: scheme.hot_pink
font: bold: true
definition:
color: scheme.white
function:
color: scheme.hot_pink
font: italic: true
type:
color: scheme.african_violet
font: italic: false
char: color: scheme.powder_blue
number: color: scheme.african_violet
operator: color: scheme.pearl_aqua
preproc: color: scheme.white
special: color: scheme.white
tag: color: scheme.pearl_aqua
member: color: scheme.white
info: color: scheme.white
constant: color: scheme.mustard
string: color: scheme.powder_blue
regex:
color: scheme.white
background: scheme.raisin_black
embedded:
color: scheme.white
background: scheme.raisin_black
-- Markup and visual styles
error:
font: italic: true
color: scheme.hot_pink
background: scheme.raisin_black
warning:
font: italic: true
color: scheme.mustard
h1:
font: bold: true
color: scheme.mustard
h2:
font: bold: true
color: scheme.mustard
h3:
font: italic: true
color: scheme.mustard
emphasis:
font:
bold: true
italic: true
strong: font: italic: true
link_label: color: scheme.mustard
link_url: color: scheme.mustard
table:
color: scheme.white
background: scheme.raisin_black
underline: true
addition: color: scheme.white
deletion: color: scheme.white
change: color: scheme.white
}