Skip to content

Commit 8c5e59b

Browse files
authored
fix(codebytes): semantic text color
1 parent 279154a commit 8c5e59b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/codebytes/src/editor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const Output = styled.pre<{ hasError: boolean }>`
2626
font-size: 0.875rem;
2727
overflow: auto;
2828
${({ hasError, theme }) => `
29-
color: ${hasError ? theme.colors.orange : theme.colors.white};
29+
color: ${hasError ? theme.colors.orange : theme.colors.text};
3030
background-color: ${theme.colors['navy-900']};
3131
`}
3232
`;

0 commit comments

Comments
 (0)