refactor: SVG color encoding

This commit is contained in:
Lucas Larroche 2022-09-11 16:54:41 +07:00
parent 2f1c0a791f
commit 95027c8175
28 changed files with 220 additions and 210 deletions

4
scss/_functions.scss Normal file
View file

@ -0,0 +1,4 @@
// Output color in RGB format
@function to-rgb($color) {
@return unquote("rgb(#{red($color)}, #{green($color)}, #{blue($color)})");
}