Skip to content

Instantly share code, notes, and snippets.

@ardenasasvc
Last active November 29, 2022 14:26
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ardenasasvc/9facc44abf7cca6dd1695246f154deb9 to your computer and use it in GitHub Desktop.
Save ardenasasvc/9facc44abf7cca6dd1695246f154deb9 to your computer and use it in GitHub Desktop.
infrafloss
# Infrafloss, a fairyfloss for the infra among us
# Intended for use with nopjmp's fairyfloss VS Code extention
# VS Marketplace Link: https://marketplace.visualstudio.com/items?itemName=nopjmp.fairyfloss
# Copy this file into your settings.json
"workbench.colorTheme": "fairyfloss",
"editor.tokenColorCustomizations":
{
"textMateRules":
[
{
"scope": [
"string.unquoted.plain.out.yaml"
],
"settings": {
"foreground": "#dec0e2"
}
},
{
"scope": [
"string.quoted.double.yaml"
],
"settings": {
"foreground": "#C2FFDF"
}
},
{
"scope": [
"string.quoted.single.yaml"
],
"settings": {
"foreground": "#C2FFDF"
}
},
{
"scope": [
"comment.line.number-sign.yaml"
],
"settings": {
"foreground": "#a186cf"
}
}
]
},
@nopjmp
Copy link

nopjmp commented Nov 2, 2020

Hey I've added this to the base fairyfloss theme because I liked it for yaml files. I'm working through trying to get the scopes working better. Might take me a while by myself.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment