Fix Dark Mode Colors (#1099)

- fix dark mode colors
This commit is contained in:
brendanlaschke
2023-08-07 19:08:02 +02:00
committed by GitHub
parent de6ebd96c5
commit 029ba25361
6 changed files with 30 additions and 3 deletions

View File

@ -35,6 +35,7 @@ const StyledTaskBody = styled.div`
`;
const StyledTaskTitle = styled.div`
color: ${({ theme }) => theme.font.color.primary};
font-weight: ${({ theme }) => theme.font.weight.medium};
padding: 0 ${({ theme }) => theme.spacing(2)};
`;