I’m playing around with SASS and could you please help me to understand why in my example (https://codepen.io/timagixe/pen/abzxdPx) when the link is hovered the border-bottom is full opacity.
As far as I understand it should be the same as rgba(0, 0, 0, 0.5) but it is not.
Maybe I’m just not understanding your original post and code. But transparentize does the exact opposite of that opacify does.
opacify: Makes $color more opaque (opaque means not transparent)
transparentize: Makes $color more transparent
So just to be clear, opacify takes color with transparency and makes it less transparent (i.e. more opaque) and transparentize takes a color with transparency and makes it more transparent.
Anyway, I just wanted to make sure I understand what you are trying to do.