I am trying to add a value let say 90 with the map-get output.
I tried simply adding 90 as a string, let say the map-get output is white color,#ffffff.
color: map-get(map-get($valuemap, $key), color)+"90";
Dart sass compiles it as invalid property, "#ffffff90"
How can I get from "#fff90" to #fff90?