-
Notifications
You must be signed in to change notification settings - Fork 431
/
Base16 Oceanic.sublime-color-scheme
421 lines (394 loc) · 10.4 KB
/
Base16 Oceanic.sublime-color-scheme
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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
{
"name": "Base16 Oceanic",
"variables":
{
// base16 color palette
"base00": "rgb(27, 43, 52)",
"base01": "rgb(52, 61, 70)",
"base02": "rgb(79, 91, 102)",
"base03": "rgb(101, 115, 126)",
"base04": "rgb(167, 173, 186)",
"base05": "rgb(192, 197, 206)",
"base06": "rgb(205, 211, 222)",
"base07": "rgb(216, 222, 233)",
"base08": "rgb(236, 95, 103)",
"base09": "rgb(249, 145, 87)",
"base0A": "rgb(250, 200, 99)",
"base0B": "rgb(153, 199, 148)",
"base0C": "rgb(95, 179, 179)",
"base0D": "rgb(102, 153, 204)",
"base0E": "rgb(197, 148, 197)",
"base0F": "rgb(171, 121, 103)",
// ST ..ish color palette
"--blueish": "var(base0D)",
"--cyanish": "var(base0C)",
"--greenish": "var(base0B)",
"--orangish": "var(base09)",
"--pinkish": "var(base0E)",
"--purplish": "var(base0E)",
"--redish": "var(base08)",
"--yellowish": "var(base0A)",
},
"globals":
{
"accent": "var(base0A)",
"foreground": "var(base05)",
"background": "var(base00)",
"invisibles": "var(base03)",
"fold_marker": "var(base04)",
"shadow": "color(black alpha(10%))",
"shadow_width": "4",
// matching brackets
"brackets_foreground": "var(base06)",
"brackets_options": "foreground glow",
"bracket_contents_foreground": "var(base06)",
"bracket_contents_options": "foreground",
"tags_foreground": "var(base08)",
"tags_options": "glow",
// caret
"caret": "var(base05)",
// indent guides
"active_guide": "var(base08)",
"stack_guide": "var(base03)",
"guide": "var(base02)",
// gutter
"gutter_foreground": "var(base03)",
"gutter_foreground_highlight": "var(base05)",
"line_diff_width": "2",
// active line
"line_highlight": "color(var(base03) alpha(10%)",
// selections
"selection": "var(base02)",
"selection_border": "var(base01)",
"selection_corner_style": "square",
},
"rules":
[
{
"name": "Comments",
"scope": "comment, punctuation.definition.comment",
"foreground": "var(base03)"
},
{
"name": "Delimiters",
"scope": "punctuation.accessor, punctuation.separator, punctuation.terminator",
"foreground": "var(base0C)"
},
{
"name": "Definition Punctuation",
"scope": "punctuation.definition",
"foreground": "var(base0C)"
},
{
"name": "Section Punctuation",
"scope": "punctuation.section",
"foreground": "var(base04)"
},
{
"name": "Embedded Punctuation",
"scope": "meta.embedded punctuation.section.embedded",
"foreground": "var(base0C)",
},
{
"name": "Interpolation Punctuation",
"scope": "meta.interpolation punctuation.section.interpolation, meta.interpolation punctuation.definition.variable - meta.interpolation variable",
"foreground": "var(base0C)",
},
// Keywords
{
"name": "Keywords",
"scope": "keyword, keyword.operator.word",
"foreground": "var(base0E)"
},
{
"name": "Operators",
"scope": "keyword.operator",
"foreground": "var(base08)"
},
// Classes, Functions, Types, Variables, ...
{
"name": "Entities",
"scope": "entity",
"foreground": "var(base0A)"
},
{
"name": "Classes",
"scope": "entity.name.class, entity.name.type.class, entity.other.inherited-class, support.class",
"foreground": "var(base0A)"
},
{
"name": "Functions",
"scope": "entity.name.function, support.function, variable.function, keyword.other.special-method, entity.name.function punctuation.definition.variable, support.function punctuation.definition.variable, variable.function punctuation.definition.variable",
"foreground": "var(base0D)"
},
{
"name": "Mapping keys",
"scope": "meta.mapping.key, meta.mapping.key string, entity.name.key",
"foreground": "var(base0E)",
},
{
"name": "Types",
"scope": "keyword.declaration, storage, support.type",
"foreground": "var(base0E)"
},
{
"name": "Variables",
"scope": "entity.name.variable, entity.other.custom-property, support.variable, variable, punctuation.definition.parameter, punctuation.definition.variable",
"foreground": "var(base06)"
},
{
"name": "Built-in Variables",
"scope": "variable.language, variable.language punctuation.definition.variable",
"foreground": "var(base08)",
"font_style": "italic"
},
{
"name": "Annotation Variables",
"scope": "variable.annotation, variable.annotation punctuation.definition.variable",
"foreground": "var(base08)"
},
// Literals
{
"name": "Constants",
"scope": "constant, keyword.other.unit, constant punctuation.definition",
"foreground": "var(base09)"
},
{
"name": "Built-in Constants",
"scope": "constant.language, constant.language punctuation.definition, support.constant, support.constant punctuation.definition",
"foreground": "var(base09)",
"font_style": "italic"
},
{
"name": "Escape Characters",
"scope": "constant.character.escape",
"foreground": "var(base0C)"
},
{
"name": "Placeholder Characters",
"scope": "constant.other.placeholder, constant.other.wildcard, constant.other.placeholder punctuation.definition",
"foreground": "var(base0C)"
},
{
"name": "Symbols",
"scope": "constant.other.symbol, constant.other.symbol punctuation.definition.constant",
"foreground": "var(base0B)"
},
{
"name": "Numbers",
"scope": "constant.numeric, punctuation.separator.decimal",
"foreground": "var(base09)"
},
{
"name": "Regular Expressions",
"scope": "meta.string.regexp, string.regexp",
"foreground": "var(base0C)"
},
{
"name": "Strings",
"scope": "string",
"foreground": "var(base0B)"
},
{
"name": "Invalid",
"scope": "invalid.illegal",
"foreground": "var(base00)",
"background": "var(base08)"
},
// CSS
{
"name": "CSS Protperty Names",
"scope": "support.type.property-name",
"foreground": "var(base0E)",
},
// HTML / XML
{
"name": "Tags",
"scope": "entity.name.tag",
"foreground": "var(base08)"
},
{
"name": "Attributes",
"scope": "entity.other.attribute-name, entity.other.attribute-name punctuation.definition",
"foreground": "var(base09)"
},
{
"name": "Attribute IDs",
"scope": "entity.other.attribute-name.id, entity.other.attribute-name.id punctuation.definition",
"foreground": "var(base0C)"
},
// Markup Blocks
{
"name": "Headings",
"scope": "markup.heading punctuation.definition.heading, markup.heading, entity.name.section",
"foreground": "var(base0C)"
},
{
"name": "Block Quotes",
"scope": "markup.quote",
"background": "color(var(base02) alpha(10%))"
},
{
"name": "Block Quotes Marker",
"scope": "markup.quote punctuation.definition.blockquote",
"foreground": "var(base05)",
"background": "var(base05)"
},
{
"name": "Github Alert Note Marker",
"scope": "markup.quote.alert.note punctuation.definition.blockquote",
"foreground": "var(--greenish)",
"background": "var(--greenish)"
},
{
"name": "Github Alert Note Heading",
"scope": "markup.heading.alert.note, markup.heading.alert.note punctuation.definition.heading",
"foreground": "var(base05)",
"font_style": "bold"
},
{
"name": "Github Alert Warning Marker",
"scope": "markup.quote.alert.warning punctuation.definition.blockquote",
"foreground": "var(--yellowish)",
"background": "var(--yellowish)"
},
{
"name": "Github Alert Warning Heading",
"scope": "markup.heading.alert.warning, markup.heading.alert.warning punctuation.definition.heading",
"foreground": "var(base05)",
"font_style": "bold"
},
{
"name": "Github Alert Caution Marker",
"scope": "markup.quote.alert.caution punctuation.definition.blockquote",
"foreground": "var(--redish)",
"background": "var(--redish)"
},
{
"name": "Github Alert Caution Heading",
"scope": "markup.heading.alert.caution, markup.heading.alert.caution punctuation.definition.heading",
"foreground": "var(base05)",
"font_style": "bold"
},
{
"name": "Code Blocks",
"scope": "markup.raw, meta.code-fence",
"background": "color(var(base02) alpha(10%))"
},
{
"name": "Code Blocks",
"scope": "meta.code-fence punctuation.definition.raw",
"foreground": "var(base04)"
},
{
"name": "List Punctuation",
"scope": "markup.list.numbered.bullet, markup.list.numbered.bullet, punctuation.definition.list_item",
"foreground": "var(base08)"
},
{
"name": "Separator",
"scope": "meta.separator",
"foreground": "var(base02)",
"background": "color(var(base02) alpha(10%))"
},
{
"name": "Table Cell Separators",
"scope": "punctuation.separator.table-cell, punctuation.section.table-header",
"foreground": "var(base03)",
},
// Markup Inlines
{
"name": "Bold",
"scope": "markup.bold",
"font_style": "bold"
},
{
"name": "Italic",
"scope": "markup.italic",
"font_style": "italic"
},
{
"name": "Bold Italic",
"scope": "markup.bold & markup.italic",
"font_style": "bold italic"
},
{
"name": "Underline",
"scope": "markup.underline",
"font_style": "underline"
},
{
"name": "Strikethrough",
"scope": "markup.strikethrough, punctuation.definition.strikethrough",
"foreground": "var(base03)",
},
{
"name": "Inline Code",
"scope": "markup.raw.inline, punctuation.definition.raw",
"foreground": "var(base0B)"
},
{
"name": "Link Text",
"scope": "meta.image, meta.link",
"foreground": "var(base08)"
},
{
"name": "Link Url",
"scope": "markup.underline.link",
"foreground": "var(base09)"
},
// Diff Marker
{
"name": "Inserted",
"scope": "markup.inserted",
"foreground": "var(--greenish)"
},
{
"name": "Deleted",
"scope": "markup.deleted",
"foreground": "var(--redish)"
},
{
"name": "Changed",
"scope": "markup.changed",
"foreground": "var(--orangish)"
},
{
"name": "Ignored",
"scope": "markup.ignored",
"foreground": "var(base02)"
},
{
"name": "Untracked",
"scope": "markup.untracked",
"foreground": "var(base02)"
},
// Build System messages & Linter Marker
{
"name": "Info",
"scope": "markup.info, message.info",
"foreground": "var(--greenish)"
},
{
"name": "Error",
"scope": "markup.error, message.error",
"foreground": "var(--redish)"
},
{
"name": "Warning",
"scope": "markup.warning, message.warning",
"foreground": "var(--orangish)"
},
// Sublime Text Syntax Test Results
{
"name": "Actual Separator",
"scope": "meta.path.syntax-tests",
"background": "color(var(base02) alpha(10%))"
},
{
"name": "Actual Separator",
"scope": "meta.separator.syntax-tests",
"background": "var(base00)"
}
]
}