This repository has been archived by the owner on Feb 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 603
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Added hex to HSL color conversion function (#231)
- Loading branch information
Showing
3 changed files
with
95 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* eslint-disable no-unused-vars */ | ||
export default hex2hsl | ||
|
||
/** | ||
* Original Source: https://stackoverflow.com/questions/46432335/hex-to-hsl-convert-javascript | ||
* | ||
* This method will convert colors in Hex to HSL format. | ||
* | ||
* @param {String} hex - The Hex value to be converted | ||
* @return {String} - The HSL value of the color | ||
*/ | ||
|
||
|
||
// eslint-disable-next-line complexity | ||
function hex2hsl(hex) { | ||
const result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex) | ||
|
||
let r = parseInt(result[1], 16) | ||
let g = parseInt(result[2], 16) | ||
let b = parseInt(result[3], 16) | ||
|
||
r /= 255 | ||
g /= 255 | ||
b /= 255 | ||
|
||
const max = Math.max(r, g, b) | ||
const min = Math.min(r, g, b) | ||
|
||
let h = (max + min) / 2 | ||
let s = (max + min) / 2 | ||
let l = (max + min) / 2 | ||
|
||
if (max === min) { | ||
h = s = 0 // achromatic | ||
} else { | ||
const d = max - min | ||
s = l > 0.5 ? d / (2 - max - min) : d / (max + min) | ||
// eslint-disable-next-line default-case | ||
switch (max) { | ||
case r: h = (g - b) / d + (g < b ? 6 : 0) | ||
break | ||
case g: h = (b - r) / d + 2 | ||
break | ||
case b: h = (r - g) / d + 4 | ||
break | ||
} | ||
h /= 6 | ||
} | ||
|
||
s = s * 100 | ||
s = Math.round(s) | ||
l = l * 100 | ||
l = Math.round(l) | ||
h = Math.round(360 * h) | ||
return `hsl(${h}, ${s}%, ${l}%)` | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import test from 'ava' | ||
import {hex2hsl} from '../src' | ||
|
||
test('test red color', t => { | ||
const hex = '#ff0000' | ||
const expected = 'hsl(0, 100%, 50%)' | ||
const actual = hex2hsl(hex) | ||
t.deepEqual(actual, expected) | ||
}) | ||
|
||
test('test green color', t => { | ||
const hex = '#00ff00' | ||
const expected = 'hsl(120, 100%, 50%)' | ||
const actual = hex2hsl(hex) | ||
t.deepEqual(actual, expected) | ||
}) | ||
|
||
test('test blue color', t => { | ||
const hex = '#0000ff' | ||
const expected = 'hsl(240, 100%, 50%)' | ||
const actual = hex2hsl(hex) | ||
t.deepEqual(actual, expected) | ||
}) | ||
|
||
test('test fabada color', t => { | ||
const hex = '#fabada' | ||
const expected = 'hsl(330, 86%, 85%)' | ||
const actual = hex2hsl(hex) | ||
t.deepEqual(actual, expected) | ||
}) | ||
|
||
test('test black color', t => { | ||
const hex = '#000000' | ||
const expected = 'hsl(0, 0%, 0%)' | ||
const actual = hex2hsl(hex) | ||
t.deepEqual(actual, expected) | ||
}) |