Skip to content

Instantly share code, notes, and snippets.

@nasitra
Last active December 14, 2018 12:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nasitra/83e58dc01aa3422474e6a1dc98f1d9ef to your computer and use it in GitHub Desktop.
Save nasitra/83e58dc01aa3422474e6a1dc98f1d9ef to your computer and use it in GitHub Desktop.
Custom color scheme settings to Flatland theme for Visual Studio Code
{
"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