mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
9 lines
No EOL
336 B
TypeScript
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)}`; |