From 83f06f9d22fc7e595d3e1b860b3dc0953e541559 Mon Sep 17 00:00:00 2001 From: David Smehlik Date: Wed, 23 Mar 2022 18:27:15 -0700 Subject: [PATCH] Update color of section titles from grey to red --- packages/lesswrong/components/common/HomeLatestPosts.tsx | 1 + packages/lesswrong/components/common/SectionTitle.tsx | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/lesswrong/components/common/HomeLatestPosts.tsx b/packages/lesswrong/components/common/HomeLatestPosts.tsx index 52fac6181f3..47fa76211ad 100644 --- a/packages/lesswrong/components/common/HomeLatestPosts.tsx +++ b/packages/lesswrong/components/common/HomeLatestPosts.tsx @@ -20,6 +20,7 @@ const styles = (theme: ThemeType): JssStyles => ({ }, title: { ...sectionTitleStyle(theme), + color: theme.palette.primary.main, display: "inline", marginRight: "auto" }, diff --git a/packages/lesswrong/components/common/SectionTitle.tsx b/packages/lesswrong/components/common/SectionTitle.tsx index a75a14c91fa..c750d3ffef2 100644 --- a/packages/lesswrong/components/common/SectionTitle.tsx +++ b/packages/lesswrong/components/common/SectionTitle.tsx @@ -20,7 +20,8 @@ const styles = (theme: ThemeType): JssStyles => ({ marginTop: 0 }, title: { - ...sectionTitleStyle(theme) + ...sectionTitleStyle(theme), + color: theme.palette.primary.main, }, children: { ...theme.typography.commentStyle,