Last active
April 2, 2016 11:38
-
-
Save andreasvirkus/4cc400de48f56fcaf762f192e19fc4c8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// The lighten/darken functionality of SASS and LESS preprocessors in JavaScript | |
// Courtesy of Chris Coyier (https://css-tricks.com/snippets/javascript/lighten-darken-color/) | |
function LightenDarkenColor(col, amt) { | |
var usePound = false; | |
if (col[0] == "#") { | |
col = col.slice(1); | |
usePound = true; | |
} | |
var num = parseInt(col,16); | |
var r = (num >> 16) + amt; | |
if (r > 255) r = 255; | |
else if (r < 0) r = 0; | |
var b = ((num >> 8) & 0x00FF) + amt; | |
if (b > 255) b = 255; | |
else if (b < 0) b = 0; | |
var g = (num & 0x0000FF) + amt; | |
if (g > 255) g = 255; | |
else if (g < 0) g = 0; | |
return (usePound?"#":"") + (g | (b << 8) | (r << 16)).toString(16); | |
} | |
// Usage: | |
// Lighten | |
var NewColor = LightenDarkenColor("#F06D06", 20); | |
// Darken | |
var NewColor = LightenDarkenColor("#F06D06", -20); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment