Open
Description
I am trying to replicate the results of the sass darken
and lighten
functions using the css color function, however, I am not getting similar results:
/* color-function */
color(#B6FFD4 blackness(30%)) /* #b3b3b3 */
/* sass darken */
darken(#B6FFD4, 30%) /* #1dff7a */
Basically I want a stronger green, which is what I get using sass darken, but I can't figure out how to replicate those results. Thanks!