From 2c1a0b43d0246affe19d008d3c4920ad027dac60 Mon Sep 17 00:00:00 2001 From: Sudhanshu Dasgupta Date: Wed, 31 Jul 2024 16:24:36 +0530 Subject: [PATCH] fix(theme): brand theme for org Signed-off-by: Sudhanshu Dasgupta --- src/custom/Markdown/style.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/custom/Markdown/style.tsx b/src/custom/Markdown/style.tsx index 9140d9e8..aab1940c 100644 --- a/src/custom/Markdown/style.tsx +++ b/src/custom/Markdown/style.tsx @@ -2,7 +2,7 @@ import { styled } from '@mui/material'; import { text } from '../../theme/colors/colors'; export const StyledMarkdown = styled('a')(({ theme }) => ({ - color: theme.palette.text.brand, + color: theme.palette.background.brand?.default, textDecoration: 'none', '&:hover': { textDecoration: 'underline'