11 lines
215 B
TypeScript
11 lines
215 B
TypeScript
export function generateRandomColor(): { r: number; g: number; b: number } {
|
|
const r = Math.random() * 255;
|
|
const g = Math.random() * 255;
|
|
const b = Math.random() * 255;
|
|
return {
|
|
r,
|
|
g,
|
|
b,
|
|
};
|
|
}
|