bind 27fill 27 inside 27 3asvg 3apath 27 with scss variables

Solutions on MaxInterview for bind 27fill 27 inside 27 3asvg 3apath 27 with scss variables by the best coders in the world

showing results for - "bind 27fill 27 inside 27 3asvg 3apath 27 with scss variables"
Brooks
03 Nov 2018
1@use 'src/variables' as c;
2/*or (if you are not importing variables from external file):
3$your-color: blue;
4*/
5
6svg>path{
7  fill: c.$your-color;
8}