Last active
September 14, 2023 20:58
-
-
Save OdatNurd/3dad48d8c656795bedda5185cfe530d1 to your computer and use it in GitHub Desktop.
OdatNurd's customizations on the Mariana color scheme
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
{ | |
"globals": | |
{ | |
"background": "color(var(blue3) l(- 3%))", | |
"line_diff_added": "var(green)", | |
"line_diff_modified": "var(blue)", | |
"line_diff_deleted": "var(red)", | |
"line_diff_width": "5", | |
"brackets_options": "glow", | |
"bracket_contents_options": "glow", | |
"tags_options": "glow" | |
}, | |
"rules": | |
[ | |
{ | |
"name": "Comment", | |
"scope": "comment, punctuation.definition.comment", | |
"font_style": "italic", | |
}, | |
/* This is a block comment */ | |
// This is a line comment | |
{ | |
"name": "Block Comment", | |
"scope": "comment.block, comment.block punctuation.definition.comment", | |
"font_style": "italic", | |
"foreground": "color(var(blue6) blend(var(blue-vibrant) 30%)))" | |
}, | |
{ | |
"scope": "constant.language.boolean.true", | |
"foreground": "var(green)", | |
"font_style": "italic bold glow" | |
}, | |
{ | |
"scope": "constant.language.boolean.false", | |
"foreground": "var(red)", | |
"font_style": "italic bold glow" | |
}, | |
{ | |
"name": "HyperHelp Anchor Punctuation", | |
"scope": "text.hyperhelp.help punctuation.anchor", | |
"foreground": "color(var(blue5) alpha(0.67))" | |
}, | |
{ | |
"name": "HyperHelp anchor (header)", | |
"scope": "text.hyperhelp.help meta.help.header meta.anchor", | |
"foreground": "var(orange)" | |
}, | |
{ | |
"name": "HyperHelp Code Fence Punctuation", | |
"scope": "text.hyperhelp.help punctuation.definition.code-fence", | |
"foreground": "color(var(blue5) alpha(0.33))", | |
}, | |
{ | |
"name": "HyperHelp Code Fence Language Name", | |
"scope": "text.hyperhelp.help constant.other.language-name", | |
"foreground": "color(var(pink) alpha(0.33))", | |
}, | |
{ | |
"name": "HyperHelp Inline Code Block Punctuation", | |
"scope": "text.hyperhelp.help punctuation.definition.raw", | |
"foreground": "color(var(blue5) alpha(0.33))" | |
}, | |
{ | |
"name": "Angular Variables", | |
"scope": "meta.interpolation.ngx.html variable, text.html.basic punctuation.section.interpolation", | |
"foreground": "var(orange)", | |
"font_style": "italic" | |
}, | |
{ | |
"name": "Glowing Python Entities", | |
// __ type methods are support functions, which has a higher | |
// precedence rule than this one by default. | |
"scope": "source.python & (entity.name, support.function)", | |
"font_style": "glow", | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment