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 = [
	'๐Ÿถ',
	'๐Ÿฑ',
	'๐Ÿญ',
	'๐Ÿน',
	'๐Ÿฐ',
	'๐ŸฆŠ',
	'๐Ÿป',
	'๐Ÿผ',
	'๐Ÿจ',
	'๐Ÿฏ',
	'๐Ÿฆ',
	'๐Ÿฎ',
	'๐Ÿฒ',
	'๐ŸŒš',
	'๐ŸŒ',
	'๐ŸŒž',
	'๐ŸŒ›',
	'๐ŸŒœ'
];