vscode-css-variables
vscode-css-variables copied to clipboard
color representation for deeper variables
Hi is it possible to have a color representation if I use nested variables? for example
:root {
--color: rgb(0,0,0);
--color-alias: var(--color);
}
and then when I am using --color i do have a color show but if i use --color-alias i do not get it. Is it possible to have it?