Skip to content

Instantly share code, notes, and snippets.

View imohanvadivel's full-sized avatar
🦖

Mohan Vadivel imohanvadivel

🦖
View GitHub Profile
@imohanvadivel
imohanvadivel / HexToHSL.js
Last active January 3, 2021 17:31
Simple logic to convert RGB color-space to HSL
class color {
static getLightness(R, G, B) {
const r = R / 255,
g = G / 255,
b = B / 255;
const max = Math.max(r, g, b);
const min = Math.min(r, g, b);
return (max + min) / 2;