diff --git a/src/components/grid/Cell.tsx b/src/components/grid/Cell.tsx index 54bffd2..4d12262 100644 --- a/src/components/grid/Cell.tsx +++ b/src/components/grid/Cell.tsx @@ -15,8 +15,8 @@ export const Cell = ({ value, status }: Props) => { 'border-black dark:border-slate-100': value && !status, 'bg-slate-400 dark:bg-slate-700 text-white border-slate-400 dark:border-slate-700': status === 'absent', - 'bg-blue-500 text-white border-blue-500': status === 'correct', - 'bg-orange-500 dark:bg-orange-700 text-white border-orange-500 dark:border-orange-700': + 'bg-amber-400 text-white border-amber-400': status === 'correct', + 'bg-orange-900 text-white border-orange-900': status === 'present', 'cell-animation': !!value, } diff --git a/src/lib/share.ts b/src/lib/share.ts index 0c80282..fa49489 100644 --- a/src/lib/share.ts +++ b/src/lib/share.ts @@ -18,9 +18,9 @@ export const generateEmojiGrid = (guesses: string[]) => { .map((letter, i) => { switch (status[i]) { case 'correct': - return '🟩' + return '🍯' case 'present': - return '🟨' + return '🐻' default: return '⬜' }