Last active
November 22, 2022 09:02
-
-
Save juliomatcom/590063030a0bea5db1a745d562036a4c to your computer and use it in GitHub Desktop.
Mariana.sublime-color-scheme syntax improved for JS, JSX, ES6+
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
| // 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