-
Notifications
You must be signed in to change notification settings - Fork 1
/
play.moon
308 lines (261 loc) · 5.58 KB
/
play.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
{:delegate_to} = howl.util.table
background = '#ffffff'
current = '#75715e'
selection = '#CE7993'
foreground = '#0E1F23'
comment = '#75715e'
red = '#F87C7A'
darkred = '#D34846'
orange = '#FA8A51'
redish = '#DD194E'
redish_dark = '#A61D43'
dark_purple = '#736093'
aqua = '#88A9A9'
blue = '#48596F'
purple = '#8255D2'
magenta = blue
grey = '#EFEFEF'
grey_darker = '#EFEFEF'
fafafa = '#FAFAFA'
grey_light = '#828282'
embedded_bg = '#9C9C9C'
border_color = '#B3B3B3'
dark_gutter = '#444444'
light_gutter = '#EAEAEA'
content_box = {
background: color: background
border:
width: 1
color: border_color
border_right:
color: border_color
border_bottom:
color: border_color
header:
color: blue -- acts weird
background:
color: border_color
border_bottom:
color: border_color
width: 1
padding: 3
footer:
color: white
background:
color: border_color
border_top:
color: border_color
font: bold: true
padding: 3
}
return {
window:
background:
color: background
status:
font:
bold: true
italic: false
color: foreground -- weird
info:
color: grey_light
warning:
color: orange
'error':
color: red
:content_box
popup:
background:
color: fafafa
border:
color: foreground
editor: delegate_to content_box, {
indicators:
default:
color: blue
title:
color: blue -- acts weird
font:
bold: true
vi:
font: bold: true
caret:
color: grey_light
width: 1
current_line:
background: current
gutter:
color: foreground -- comment
background:
color: light_gutter -- fafafa
}
flairs:
indentation_guide:
type: flair.PIPE,
foreground: grey_darker,
: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: grey_darker, -- blue ?
foreground_alpha: 0.3,
line_width: 0.5
search:
type: highlight.ROUNDED_RECTANGLE
foreground: black
foreground_alpha: 1
background: redish
text_color: fafafa
height: 'text'
search_secondary:
type: flair.ROUNDED_RECTANGLE
background: redish_dark
text_color: fafafa
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: foreground
text_color: foreground
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.3
min_width: 'letter'
styles:
default:
color: foreground
red: color: red
dark_purple: color: dark_purple
redish: color: redish
blue: color: blue
magenta: color: purple
cyan: color: aqua
popup:
background: fafafa
color: foreground
comment:
font: italic: true
color: comment
variable:
color: redish
label:
color: orange
font: italic: true
key:
color: blue
font: bold: true
fdecl:
color: dark_purple
font: bold: true
keyword:
color: magenta
font: bold: true
class:
color: blue
font: bold: true
type_def:
color: dark_purple
font:
bold: true
definition:
color: redish
function:
color: blue
font: bold: true
type:
color: blue
font: italic: true
char: color: dark_purple
number: color: purple
operator: color: magenta
preproc: color: aqua
special: color: purple
tag: color: purple
member: color: red
info: color: blue
constant:
color: redish
string:
color: redish
regex:
color: dark_purple
background: embedded_bg
embedded:
color: blue
background: embedded_bg
-- Markup and visual styles
error:
font: italic: true
color: white
background: darkred
warning:
color: foreground -- 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: dark_purple
deletion: color: red
change: color: redish
}