Skip to content

Commit

Permalink
fix(codebytes): semantic text color
Browse files Browse the repository at this point in the history
  • Loading branch information
BandanaKM authored Feb 5, 2022
1 parent 279154a commit 8c5e59b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/codebytes/src/editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const Output = styled.pre<{ hasError: boolean }>`
font-size: 0.875rem;
overflow: auto;
${({ hasError, theme }) => `
color: ${hasError ? theme.colors.orange : theme.colors.white};
color: ${hasError ? theme.colors.orange : theme.colors.text};
background-color: ${theme.colors['navy-900']};
`}
`;
Expand Down

0 comments on commit 8c5e59b

Please sign in to comment.