vscode-colorize
vscode-colorize copied to clipboard
Does not work in JSON files
The extension doesn't highlight the css colours in json file
Yes, I was hoping it would work on settings.json as well, as the extension color highlight
became unstable and wanted to replace it.
Any plans to make it also work in JSON files?
It works just fine, but you need to enable it for JSON and JSON with comments in your config.
"colorize.languages": [
"json",
"jsonc",
"css",
"sass",
"scss",
"less",
"postcss",
"sss",
"stylus",
"xml",
"svg"
],
"colorize.include": [
"**/*.json",
"**/*.css",
"**/*.scss",
"**/*.sass",
"**/*.less",
"**/*.styl"
]
Indeed, it works! Thank you! I just miss having the decorators on the scroll bar though...
It works with the solution above. thanks.