I am using mdl, which has color variables setup like $color-primary: '255, 0, 0' !default;
This is making it hard for me to take that color and lighten it.
I have tried using unquote(), but it is giving me an error:
Argument
$coloroflighten($color, $amount)must be a color
$color-primary: '255, 0, 0' !default;
$light-accent: lighten(unquote('rgb(#{$color-primary})'), 13.5%) !default;
Is there someway I can convert that to a color?
