From c5cb02e980b2caf1070ab9f6f167a24a0713979b Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Fri, 10 Feb 2023 23:18:10 -0500 Subject: [PATCH] fix: Text color on key component --- app/components/Key.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/Key.ts b/app/components/Key.ts index d3068a280..5cbc6d6a8 100644 --- a/app/components/Key.ts +++ b/app/components/Key.ts @@ -12,7 +12,7 @@ const Key = styled.kbd` font-family: ${(props) => props.symbol ? props.theme.fontFamily : props.theme.fontFamilyMono}; line-height: 10px; - color: ${(props) => props.theme.textSecondary}; + color: ${(props) => props.theme.almostBlack}; vertical-align: middle; background-color: ${(props) => props.theme.smokeLight}; border: solid 1px ${(props) => props.theme.slateLight};