I have a color map that looks like this:
$colors: (
brand-blue: (
lightest: #87B9D9,
lighter: #3395D4,
light: #0370B7,
base: #232D4B,
)
)
I'm trying to call a specific color using "map-get"
#foo {
border: 1px solid map-get($colors, brand-blue, base);
}
I'm getting errors that I can't call more that two arguments. What am I doing wrong? Or, more importantly is there something I can do differently?
Thanks