Skip to content

Commit 09366aa

Browse files
Merge pull request #697 from sudhanshutech/theme/markdown
Fix color for link element of markdown to adhere org based theme
2 parents b9a302e + a8e8562 commit 09366aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/custom/Markdown/style.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { styled } from '@mui/material';
22
import { text } from '../../theme/colors/colors';
33

44
export const StyledMarkdown = styled('a')(({ theme }) => ({
5-
color: theme.palette.text.brand,
5+
color: theme.palette.background.brand?.default,
66
textDecoration: 'none',
77
'&:hover': {
88
textDecoration: 'underline'

0 commit comments

Comments
 (0)