Skip to content

Commit 4da8324

Browse files
change link color from red to darkGray2 in rich text and News/Article content
1 parent 15f4216 commit 4da8324

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

frontends/main/src/page-components/TiptapEditor/TiptapEditor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ const Container = styled.div<{
119119
},
120120
a: {
121121
textDecoration: "underline",
122-
color: theme.custom.colors.red,
122+
color: theme.custom.colors.darkGray2,
123123
fontWeight: theme.typography.fontWeightMedium,
124124
},
125125
"a:hover": {

frontends/ol-components/src/components/ThemeProvider/MITLearnGlobalStyles.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const pageCss = (theme: Theme) => css`
3535
3636
.raw-html a {
3737
text-decoration: underline;
38-
color: ${theme.custom.colors.red};
38+
color: ${theme.custom.colors.darkGray2};
3939
font-weight: ${theme.typography.fontWeightMedium};
4040
4141
&:hover {

0 commit comments

Comments
 (0)