From 7ffd0c3ee97801c5a9c2b4f3c675ba0ad1083ec9 Mon Sep 17 00:00:00 2001 From: Christoph Stahl Date: Sun, 13 Feb 2022 12:39:28 +0100 Subject: [PATCH] better emojis --- src/components/grid/Cell.tsx | 4 ++-- src/lib/share.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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 '⬜' }