Skip to content
This repository was archived by the owner on Apr 19, 2024. It is now read-only.

Commit c22dad8

Browse files
committed
use the same default text color as in cloud, to prevent unreadable color on dark theme
1 parent 5fb323c commit c22dad8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/ui-notification/styled.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ export const HeaderText = styled(Text)<{ error?: boolean; success?: boolean }>`
3131

3232
export const ContentText = styled(TextSmall)<{ error?: boolean; success?: boolean }>`
3333
display: block;
34-
color: ${({ error }) => (error && getColor("error")) || getColor("text")};
34+
color: ${({ error }) => (error && getColor("error")) || getColor("border")};
3535
`

0 commit comments

Comments
 (0)