From 680a9245bdaffcef20d901d1c9ebe2c7f6110e3f Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Tue, 12 Mar 2019 22:33:24 -0700 Subject: [PATCH] More text color tweaking --- app/components/Subheading.js | 2 +- app/components/Tab.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/Subheading.js b/app/components/Subheading.js index 378365a3a..0339251f4 100644 --- a/app/components/Subheading.js +++ b/app/components/Subheading.js @@ -6,7 +6,7 @@ const Subheading = styled.h3` font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; - color: ${props => props.theme.divider}; + color: ${props => props.theme.textTertiary}; border-bottom: 1px solid ${props => props.theme.divider}; padding-bottom: 8px; margin-top: 30px; diff --git a/app/components/Tab.js b/app/components/Tab.js index 13ea079e4..ea4abfec2 100644 --- a/app/components/Tab.js +++ b/app/components/Tab.js @@ -8,7 +8,7 @@ const NavItem = styled(NavLink)` font-size: 11px; font-weight: 500; text-transform: uppercase; - color: ${props => props.theme.divider}; + color: ${props => props.theme.textTertiary}; letter-spacing: 0.04em; margin-right: 24px; padding-bottom: 8px;