From 130212c88691ac1f9a36756e3bd2aa9afe4f79a9 Mon Sep 17 00:00:00 2001 From: rishabhsharma1997 Date: Thu, 8 Aug 2024 17:00:06 +0530 Subject: [PATCH] chore: using brand colors Signed-off-by: rishabhsharma1997 --- src/custom/StyledChapter/StyledChapter.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/custom/StyledChapter/StyledChapter.tsx b/src/custom/StyledChapter/StyledChapter.tsx index 671078cf..71a8fb11 100644 --- a/src/custom/StyledChapter/StyledChapter.tsx +++ b/src/custom/StyledChapter/StyledChapter.tsx @@ -1,5 +1,5 @@ import { styled } from '@mui/material'; -import { KEPPEL, SLATE_BLUE, TRANSPARENT_WHITE } from '../../theme'; +import { SLATE_BLUE, TRANSPARENT_WHITE } from '../../theme'; const StyledChapter = styled('div')(({ theme }) => ({ color: theme.palette.text.primary, @@ -15,7 +15,7 @@ const StyledChapter = styled('div')(({ theme }) => ({ }, '& a': { - color: KEPPEL, + color: theme.palette.background.default, textDecoration: 'none' }, '& pre': {