{ "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" }, ] }