mirror of
https://github.com/Qortal/Q-Apps-Utils.git
synced 2025-02-14 11:15:55 +00:00
8 lines
206 B
TypeScript
8 lines
206 B
TypeScript
import * as colorsys from "colorsys";
|
|
|
|
export const changeLightness = (hexColor: string, amount: number) => {
|
|
const hsl = colorsys.hex2Hsl(hexColor);
|
|
hsl.l += amount;
|
|
return colorsys.hsl2Hex(hsl);
|
|
};
|