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)};
`;

View File

@ -13,6 +13,7 @@ type OwnProps = {
const StyledContainer = styled.div`
align-items: center;
border-top: 1px solid ${({ theme }) => theme.border.color.medium};
color: ${({ theme }) => theme.font.color.primary};
display: flex;
flex-direction: row;
gap: ${({ theme }) => theme.spacing(2)};