-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotr-scopes.sublime-color-scheme
54 lines (49 loc) · 3.39 KB
/
notr-scopes.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
{
"rules":
[
// Existing scopes used by Notr.
{ "scope": "meta.link.reference", "background": "lightgreen" },
{ "scope": "meta.link.inline", "background": "lightblue" },
{ "scope": "meta.table", "background": "lightblue" },
{ "scope": "meta.table.header", "background": "deepskyblue" },
{ "scope": "markup.underline.link", "background": "yellow" },
// Scopes added for Notr.
{ "scope": "text.notr", "foreground": "black" },
{ "scope": "markup.directive.notr", "background": "lightsalmon" },
{ "scope": "markup.underline.link.notr", "background": "chartreuse" },
{ "scope": "markup.italic.notr", "font_style": "italic" },
{ "scope": "markup.bold.notr", "font_style": "bold" },
{ "scope": "markup.underline.notr", "font_style": "underline" },
{ "scope": "markup.strikethrough.notr", "background": "lightgray" },
{ "scope": "markup.heading.content.notr", "background": "aquamarine", "font_style": "bold" },
{ "scope": "markup.heading.tags.notr", "background": "bisque", "font_style": "italic" },
{ "scope": "markup.hrule.notr", "background": "mediumaquamarine" },
{ "scope": "markup.raw.inline.notr", "background": "aliceblue" },
{ "scope": "markup.raw.block.notr", "background": "aliceblue" },
{ "scope": "markup.quote.notr", "background": "lightcyan", "font_style": "italic" },
// The builtin list scopes don't fit well with notr so here's some new ones.
{ "scope": "markup.list.indent.notr", "background": "snow" },
{ "scope": "markup.list.marker.dash.notr", "background": "lightskyblue", "font_style": "bold" },
{ "scope": "markup.list.marker.x.notr", "background": "pink", "font_style": "bold" },
{ "scope": "markup.list.marker.question.notr", "background": "springgreen", "font_style": "bold" },
{ "scope": "markup.list.marker.exclmation.notr", "background": "hotpink", "font_style": "bold" },
{ "scope": "markup.list.content.notr", "background": "lightyellow" },
// New link scopes.
{ "scope": "markup.link.target.notr", "background": "chartreuse" },
{ "scope": "markup.link.tags.notr", "background": "bisque", "font_style": "italic" },
{ "scope": "markup.link.name.notr", "background": "lemonchiffon", "font_style": "italic" },
{ "scope": "markup.link.refname.notr", "background": "lavender", "font_style": "bold" },
{ "scope": "markup.directive.notr", "background": "lightsalmon" },
// Notr specific highlighting.
{ "scope": "markup.fixed_hl1", "background": "gainsboro", "foreground": "red" },
{ "scope": "markup.fixed_hl2", "background": "gainsboro", "foreground": "green" },
{ "scope": "markup.fixed_hl3", "background": "gainsboro", "foreground": "blue" },
// User highlighting. Only needed if you are also using Highlight Token.
{ "scope": "markup.user_hl1", "background": "red", "foreground": "white" },
{ "scope": "markup.user_hl2", "background": "green", "foreground": "white" },
{ "scope": "markup.user_hl3", "background": "blue", "foreground": "white" },
{ "scope": "markup.user_hl4", "background": "yellow", "foreground": "black" },
{ "scope": "markup.user_hl5", "background": "lime", "foreground": "black" },
{ "scope": "markup.user_hl6", "background": "cyan", "foreground": "black" },
]
}