vscode-colorize
vscode-colorize copied to clipboard
Flutter fromARGB
trafficstars
it doesn't work for 'fromARGB' function in Flutter
my settings
"colorize.include": [
"*"
],
"colorize.colorized_colors": [
"BROWSERS_COLORS",
"ARGB",
"HEXA",
"RGB",
"HSL"
],
It's because the ARGB format supported is #AARRGGB, #ARGB, #RGB, #RRGGBB.
Right now, the extension only officially supports CSS-like documents (.css, .scss, .less) and thinks that looks like CSS.
Adding support for new language or color is getting hard and impacts the extension performances. I'm planning on modifying how the extension works to rely on a language server, which should simplify adding support for other languages and new color types