forked from github/plane
a14f8c281b
* chore: store various shades of accent color * refactor: custom theme selector * refactor: custom theme selector * chore: update custom theme input labels * fix: color generator function logic * fix: accent color preloaded data * chore: new theming structure * chore: update shades calculation logic * refactor: variable names * chore: update color scheming * chore: new color scheming * refactor: themes folder structure * chore: update classnames according to new variables * Revert "chore: update classnames according to new variables" This reverts commit 60a87453b21768167e37889e709c12287ca07b08. * chore: remove temp file
20 lines
522 B
TypeScript
20 lines
522 B
TypeScript
export type TRgb = { r: number; g: number; b: number };
|
|
|
|
export const hexToRgb = (hex: string): TRgb => {
|
|
const r = parseInt(hex.slice(1, 3), 16);
|
|
const g = parseInt(hex.slice(3, 5), 16);
|
|
const b = parseInt(hex.slice(5, 7), 16);
|
|
|
|
return { r, g, b };
|
|
};
|
|
|
|
export const rgbToHex = (rgb: TRgb): string => {
|
|
const { r, g, b } = rgb;
|
|
|
|
const hexR = r.toString(16).padStart(2, "0");
|
|
const hexG = g.toString(16).padStart(2, "0");
|
|
const hexB = b.toString(16).padStart(2, "0");
|
|
|
|
return `#${hexR}${hexG}${hexB}`;
|
|
};
|