mirror of
https://github.com/chatmail/core.git
synced 2026-04-05 23:22:11 +03:00
7 lines
238 B
TypeScript
7 lines
238 B
TypeScript
/**
|
|
* @param integerColor expects a 24bit rgb integer (left to right: 8bits red, 8bits green, 8bits blue)
|
|
*/
|
|
export function integerToHexColor(integerColor: number) {
|
|
return '#' + (integerColor + 16777216).toString(16).substring(1)
|
|
}
|