From bcd76c9f124fe0a40ca5bb01bdf7bb739053283b Mon Sep 17 00:00:00 2001 From: developomp Date: Mon, 16 Aug 2021 23:21:21 +0900 Subject: [PATCH] post meta color to give title more contrast --- source/src/components/PostCard.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/src/components/PostCard.tsx b/source/src/components/PostCard.tsx index 8d38f75..d614e3b 100644 --- a/source/src/components/PostCard.tsx +++ b/source/src/components/PostCard.tsx @@ -24,8 +24,8 @@ const StyledTitle = styled.h1` const StyledMetaContainer = styled.small` color: ${(props) => theming.theme(props.theme.currentTheme, { - light: "#444", - dark: "lightgrey", + light: "#555", + dark: "#CCC", })}; `