better emojis

This commit is contained in:
Christoph Stahl 2022-02-13 12:39:28 +01:00
parent 7ca739adb7
commit 7ffd0c3ee9
2 changed files with 4 additions and 4 deletions

View file

@ -15,8 +15,8 @@ export const Cell = ({ value, status }: Props) => {
'border-black dark:border-slate-100': value && !status, 'border-black dark:border-slate-100': value && !status,
'bg-slate-400 dark:bg-slate-700 text-white border-slate-400 dark:border-slate-700': 'bg-slate-400 dark:bg-slate-700 text-white border-slate-400 dark:border-slate-700':
status === 'absent', status === 'absent',
'bg-blue-500 text-white border-blue-500': status === 'correct', 'bg-amber-400 text-white border-amber-400': status === 'correct',
'bg-orange-500 dark:bg-orange-700 text-white border-orange-500 dark:border-orange-700': 'bg-orange-900 text-white border-orange-900':
status === 'present', status === 'present',
'cell-animation': !!value, 'cell-animation': !!value,
} }

View file

@ -18,9 +18,9 @@ export const generateEmojiGrid = (guesses: string[]) => {
.map((letter, i) => { .map((letter, i) => {
switch (status[i]) { switch (status[i]) {
case 'correct': case 'correct':
return '🟩' return '🍯'
case 'present': case 'present':
return '🟨' return '🐻'
default: default:
return '⬜' return '⬜'
} }