From 13c7f505305c5476031c903a2894e825db69a2d3 Mon Sep 17 00:00:00 2001 From: Michael Dirolf Date: Thu, 25 Jun 2020 13:32:57 -0400 Subject: [PATCH] Fix keyboard in dark mode. Closes #96 --- app/components/Keyboard.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/components/Keyboard.tsx b/app/components/Keyboard.tsx index 9e9b57b9..13cc779b 100644 --- a/app/components/Keyboard.tsx +++ b/app/components/Keyboard.tsx @@ -62,6 +62,7 @@ export const Key = (props: KeyProps) => { background: props.backgroundColor ? props.backgroundColor : 'var(--key-bg)', flex: props.smallSize ? '0.5 1 0 ' : (props.largeSize ? '1.6 1 0 ' : '1 1 0'), cursor: 'pointer', + color: 'var(--black)', boxShadow: '0 0 3px -1px rgba(0,0,0,.3)', height: '40px', borderRadius: '5px',