Skip to content

Instantly share code, notes, and snippets.

@galtsev
Last active July 7, 2019 14:13
Show Gist options
  • Select an option

  • Save galtsev/5078023816a0060bb9fcc3fd2b43bd82 to your computer and use it in GitHub Desktop.

Select an option

Save galtsev/5078023816a0060bb9fcc3fd2b43bd82 to your computer and use it in GitHub Desktop.
Sublime color scheme
{
"name": "MyCustom",
"author": "Dan",
"variables":
{
"comment": "limegreen",
"literal": "blue",
"definition": "mediumblue",
"selection": "aqua",
"highlight": "lime",
"hlborder": "magenta"
},
"globals":
{
"foreground": "black",
"background": "white",
"caret": "var(magenta)",
"selection": "var(selection)",
"selection_border": "var(teal)",
"inactive_selection": "color(var(dark_gray) a(0.08))",
"line_highlight": "#eee",
"highlight": "var(hlborder)",
"find_highlight": "var(highlight)",
"find_highlight_foreground": "var(black)",
"active_guide": "var(red)",
"stack_guide": "var(orange)",
"shadow": "#bbb",
"accent": "var(orange)",
"misspelling": "var(dark_orange)",
"fold_marker": "var(yellow)",
},
"rules":
[
{
"scope": "source, text",
"foreground": "black"
},
{
"scope": "keyword, storage",
"font_style": "bold"
},
{
"scope": "constant, string",
"foreground": "var(literal)"
},
{
"scope": "comment",
"foreground": "var(comment)",
"font_style": "italic"
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment