js invert color
const invertColor = (bg) => {
bg=parseInt(Number(bg.replace('#', '0x')), 10)
bg=~bg
bg=bg>>>0
bg=bg&0x00ffffff
bg='#' + bg.toString(16).padStart(6, "0")
return bg
}
js invert color
const invertColor = (bg) => {
bg=parseInt(Number(bg.replace('#', '0x')), 10)
bg=~bg
bg=bg>>>0
bg=bg&0x00ffffff
bg='#' + bg.toString(16).padStart(6, "0")
return bg
}
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