Created
April 2, 2020 11:23
-
-
Save RoyalHunt/c052f2a365b073b04b21949e08ea6533 to your computer and use it in GitHub Desktop.
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
function lightenDarkenColor(color, amt, isDarken) { | |
let col = color; | |
let usePound = false; | |
const diff = isDarken ? ~amt + 1 : amt; | |
if (col[0] === '#') { | |
col = col.slice(1); | |
usePound = true; | |
} | |
const num = parseInt(col, 16); | |
let r = (num >> 16) + diff; | |
if (r > 255) r = 255; | |
else if (r < 0) r = 0; | |
let b = ((num >> 8) & 0x00ff) + diff; | |
if (b > 255) b = 255; | |
else if (b < 0) b = 0; | |
let g = (num & 0x0000ff) + diff; | |
if (g > 255) g = 255; | |
else if (g < 0) g = 0; | |
return (usePound ? '#' : '') + (g | (b << 8) | (r << 16)).toString(16); | |
} | |
export const darken = (color, amt) => lightenDarkenColor(color, amt, true); | |
export const lighten = (color, amt) => lightenDarkenColor(color, amt); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment