fxtwitter-docker/src/utils.ts
2022-07-14 04:29:50 -04:00

9 lines
No EOL
336 B
TypeScript

// https://stackoverflow.com/questions/5623838/rgb-to-hex-and-hex-to-rgb
const componentToHex = (component: number) => {
let hex = component.toString(16);
return hex.length === 1 ? "0" + hex : hex;
}
export const rgbToHex = (r: number, g: number, b: number) =>
`#${componentToHex(r)}${componentToHex(g)}${componentToHex(b)}`;