bind 'fill' inside ':svg:path' with scss variables code example
Example: bind 'fill' inside ':svg:path' with scss variables
@use 'src/variables' as c;
/*or (if you are not importing variables from external file):
$your-color: blue;
*/
svg>path{
fill: c.$your-color;
}