Last active
April 18, 2024 05:31
-
-
Save deeperton/addd1498854fdd1f37ebbebb9f7d4b4c to your computer and use it in GitHub Desktop.
Converter RGBA() to #HEX color with applying alpha-channel + additional opacity
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// converter rgba(r, g, b, a) color to #HEX string without alpha channel, | |
// with optional applying afterwards opacity ($opacity) | |
// by default alpha channel for rgba-color is applying against white background, | |
// but you can change it by setting third argumnet ($background) | |
@function rgba-to-rgb($rgba, $opacity: 0, $background: #fff) { | |
@if $opacity > 0 { | |
@if $opacity < 1 { | |
$opacity: $opacity * 100 | |
} | |
@return mix(mix(rgb(red($rgba), green($rgba), blue($rgba)), $background, alpha($rgba) * 100%), rgb(255,255,255), $opacity) | |
} | |
@return mix(rgb(red($rgba), green($rgba), blue($rgba)), $background, alpha($rgba) * 100%) | |
} | |
// by this function you can calc next color composition to real colors: | |
// opacity: 0.12; | |
// background-color: rgba(0, 0, 0, 0.87); | |
p { | |
$rgba-color: rgba(0, 0, 0, .87) ; | |
color: rgba-to-rgb($rgba-color); // #212121 | |
// applying 12% opacity to that color | |
background-color: rgba-to-rgb($rgba-color, 12); //E4E4E4 | |
// is also possible to use .12 | |
background-color: rgba-to-rgb($rgba-color, .12); //E4E4E4 | |
} |
thank you
thank you, thank you, thank you
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This function was just what I was looking for. I couldn't figure it out myself. Thank you!