Files
urldb/web/components/QRCode/color.ts

7 lines
218 B
TypeScript
Raw Normal View History

2025-08-25 13:05:25 +08:00
export function createRandomColor() {
return '#' + Math.floor(Math.random() * 16777215).toString(16)
}
export function getRandomItemInArray(array: any[]) {
return array[Math.floor(Math.random() * array.length)]
}