radames's picture
fancy cursors
304976c unverified
raw
history blame
379 Bytes
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 = [
'๐Ÿถ',
'๐Ÿฑ',
'๐Ÿญ',
'๐Ÿน',
'๐Ÿฐ',
'๐ŸฆŠ',
'๐Ÿป',
'๐Ÿผ',
'๐Ÿจ',
'๐Ÿฏ',
'๐Ÿฆ',
'๐Ÿฎ',
'๐Ÿฒ',
'๐ŸŒš',
'๐ŸŒ',
'๐ŸŒž',
'๐ŸŒ›',
'๐ŸŒœ'
];