Last active
December 14, 2018 12:00
-
-
Save nasitra/83e58dc01aa3422474e6a1dc98f1d9ef to your computer and use it in GitHub Desktop.
Custom color scheme settings to Flatland theme for Visual Studio Code
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": { | |
"[Flatland_Dark]": { | |
"comments": "#798188", | |
"functions": "#F8F8F8", | |
"keywords": "#FA9A4B", | |
"numbers": "#B8D977", | |
"strings": "#C4E2F2", | |
"types": "#F8F8F8", | |
"variables": "#F8F8F8", | |
"textMateRules": [ | |
{ | |
"name": "Support.variable", | |
"scope": "support.variable", | |
"settings": { "foreground": "#F8F8F8" } | |
}, | |
{ | |
"name": "Variable.language", | |
"scope": "variable.language", | |
"settings": { "foreground": "#FA9A4B" } | |
} | |
] | |
} | |
}, | |
"workbench.colorTheme": "Flatland_Dark" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment