Spaces:
Runtime error
Runtime error
File size: 379 Bytes
304976c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
import colors from 'tailwindcss/colors';
export const COLORS = Object.values(colors)
.filter((e) => typeof e === 'object')
.map((e) => e['200'])
.slice(0, 18);
// all animal emojis list
export const EMOJIS = [
'๐ถ',
'๐ฑ',
'๐ญ',
'๐น',
'๐ฐ',
'๐ฆ',
'๐ป',
'๐ผ',
'๐จ',
'๐ฏ',
'๐ฆ',
'๐ฎ',
'๐ฒ',
'๐',
'๐',
'๐',
'๐',
'๐'
];
|