Last active
May 6, 2019 14:14
-
-
Save r15ch13/f8cdb997921fe332f58452027493a8b0 to your computer and use it in GitHub Desktop.
Custom JSON Level coloring for Night Owl (VSCode)
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
| { | |
| "editor.tokenColorCustomizations": { | |
| "[Night Owl]": { | |
| "textMateRules": [ | |
| { | |
| "name": "JSON Key - Level 0", | |
| "scope": [ | |
| "source.json meta.structure.dictionary.json support.type.property-name.json" | |
| ], | |
| "settings": { | |
| "foreground": "#7fdbca" | |
| } | |
| }, | |
| { | |
| "name": "JSON Key - Level 1", | |
| "scope": [ | |
| "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" | |
| ], | |
| "settings": { | |
| "foreground": "#FAD430" | |
| } | |
| }, | |
| { | |
| "name": "JSON Key - Level 2", | |
| "scope": [ | |
| "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" | |
| ], | |
| "settings": { | |
| "foreground": "#F78C6C" | |
| } | |
| }, | |
| { | |
| "name": "JSON Key - Level 3", | |
| "scope": [ | |
| "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" | |
| ], | |
| "settings": { | |
| "foreground": "#D3423E" | |
| } | |
| }, | |
| { | |
| "name": "JSON Key - Level 4", | |
| "scope": [ | |
| "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" | |
| ], | |
| "settings": { | |
| "foreground": "#ADDB67" | |
| } | |
| }, | |
| { | |
| "name": "JSON Key - Level 5", | |
| "scope": [ | |
| "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" | |
| ], | |
| "settings": { | |
| "foreground": "#80CBC4" | |
| } | |
| }, | |
| { | |
| "name": "JSON Key - Level 6", | |
| "scope": [ | |
| "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" | |
| ], | |
| "settings": { | |
| "foreground": "#FF869A" | |
| } | |
| }, | |
| { | |
| "name": "JSON Key - Level 7", | |
| "scope": [ | |
| "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" | |
| ], | |
| "settings": { | |
| "foreground": "#C792EA" | |
| } | |
| }, | |
| { | |
| "name": "JSON Key - Level 8", | |
| "scope": [ | |
| "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" | |
| ], | |
| "settings": { | |
| "foreground": "#82B1FF" | |
| } | |
| } | |
| ] | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment