convert alpha to hex value css
# use the table/mapping over here
https://gist.github.com/lopspower/03fb1cc0ac9f32ef38f4
convert alpha to hex value css
# use the table/mapping over here
https://gist.github.com/lopspower/03fb1cc0ac9f32ef38f4
css color hex to rgb a
hexToRGB(hex, alpha) {
const r = parseInt(hex.slice(1, 3), 16);
const g = parseInt(hex.slice(3, 5), 16);
const b = parseInt(hex.slice(5, 7), 16);
if (alpha) {
return `rgba(${r}, ${g}, ${b}, ${alpha})`;
} else {
return `rgb(${r}, ${g}, ${b})`;
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us