mirror of
https://github.com/docmost/docmost.git
synced 2025-11-19 13:51:11 +10:00
14 lines
234 B
TypeScript
14 lines
234 B
TypeScript
export const userColors = [
|
|
"#958DF1",
|
|
"#F98181",
|
|
"#FBBC88",
|
|
"#FAF594",
|
|
"#70CFF8",
|
|
"#94FADB",
|
|
"#B9F18D",
|
|
];
|
|
|
|
export function randomElement(array: Array<any>) {
|
|
return array[Math.floor(Math.random() * array.length)];
|
|
}
|