Created
February 2, 2023 17:59
-
-
Save gmcabrita/9166604b1ecf3eb16b28721d2e560419 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"name": "Minimal", | |
"author": "Gonçalo Cabrita", | |
"variables": | |
{ | |
"black": "#000000", | |
"white": "#ffffff", | |
"green": "#009300", | |
"red": "#ff0000", | |
"yellow": "#cccc00" | |
}, | |
"globals": | |
{ | |
"foreground": "var(black)", | |
"background": "var(white)", | |
"caret": "color(var(black) alpha(0.3))", | |
"block_caret": "color(var(black) alpha(0.6))", | |
"invisibles": "color(var(black) alpha(0.15))", | |
"line_highlight": "color(var(black) alpha(0.1))", | |
"selection": "var(black)", | |
"selection_foreground": "var(white)", | |
"selection_border": "var(black)", | |
"misspelling": "var(red)", | |
"find_highlight_foreground": "var(white)", | |
"find_highlight": "var(black)", | |
"brackets_options": "underline", | |
"brackets_foreground": "color(var(black))", | |
"bracket_contents_options": "underline", | |
"bracket_contents_foreground": "color(var(black))", | |
"gutter_foreground": "var(black)" | |
}, | |
"rules": | |
[ | |
{ | |
"name": "Comment", | |
"scope": "comment", | |
"foreground": "var(green)" | |
}, | |
{ | |
"name": "diff.deleted", | |
"scope": "markup.deleted", | |
"foreground": "var(red)" | |
}, | |
{ | |
"name": "diff.inserted", | |
"scope": "markup.inserted", | |
"foreground": "var(green)" | |
}, | |
{ | |
"name": "diff.changed", | |
"scope": "markup.changed", | |
"foreground": "var(yellow)" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment