mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
79e86e1aca
Adds the project health widget to the edb: <img width="1243" alt="Skjermbilde 2024-01-31 kl 12 16 23" src="https://github.com/Unleash/unleash/assets/16081982/7df1e4dc-3245-4c30-bb9e-f21e90697392">
10 lines
299 B
TypeScript
10 lines
299 B
TypeScript
// TODO: Replace this function with something more tailored to our color palette
|
|
export const getRandomColor = () => {
|
|
const letters = '0123456789ABCDEF';
|
|
let color = '#';
|
|
for (let i = 0; i < 6; i++) {
|
|
color += letters[Math.floor(Math.random() * 16)];
|
|
}
|
|
return color;
|
|
};
|