fix: Text color on key component

This commit is contained in:
Tom Moor
2023-02-10 23:18:10 -05:00
parent db446ba67d
commit c5cb02e980

View File

@@ -12,7 +12,7 @@ const Key = styled.kbd<Props>`
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};