Last active
November 29, 2022 14:26
-
-
Save ardenasasvc/9facc44abf7cca6dd1695246f154deb9 to your computer and use it in GitHub Desktop.
infrafloss
This file contains 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
# 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" | |
} | |
} | |
] | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.