Skip to content

Instantly share code, notes, and snippets.

@juliomatcom
Last active November 22, 2022 09:02
Show Gist options
  • Select an option

  • Save juliomatcom/590063030a0bea5db1a745d562036a4c to your computer and use it in GitHub Desktop.

Select an option

Save juliomatcom/590063030a0bea5db1a745d562036a4c to your computer and use it in GitHub Desktop.
Mariana.sublime-color-scheme syntax improved for JS, JSX, ES6+
// Documentation at https://www.sublimetext.com/docs/color_schemes.html
{
"variables":
{
"yellow": "#F0DB4F",
"function_argument": "#79b8ff",
"variable_blue": "#9ecbff",
},
"globals":
{
"background": "#0c0c0d",
},
"rules":
[
{
"name": "Function call",
"scope": "variable.function, variable.annotation",
"foreground": "var(yellow)"
},
{
"name": "Function argument",
"scope": "variable.parameter",
"foreground": "var(function_argument)"
},
{
"name": "Entity name",
"scope": "entity.name.function",
"foreground": "var(orange)"
},
{
"name": "Library function",
"scope": "support.function, support.macro",
"foreground": "var(yellow)",
"font_style": "italic"
},
{
"name": "Punctuation",
"scope": "punctuation.accessor",
"foreground": "var(red2)"
},
{
"name": "Variables",
"scope": "variable.other - entity.name",
"foreground": "var(variable_blue)",
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment