UNPKG

react-native-fullscreen-animations

Version:
9 lines (7 loc) 254 B
export const randomNumber = (min: number, max: number) => { const res = Math.random() * (max - min) + min; return res; }; export const randomColor = (colors: string[]): string => { return colors[Math.round(randomNumber(0, colors.length - 1))]; };