From 284a4ef794eee5a859d7e6d7261b0b641173cf32 Mon Sep 17 00:00:00 2001 From: Robert Long Date: Mon, 13 Dec 2021 16:28:50 -0800 Subject: [PATCH] Fix tab color --- src/Tabs.module.css | 4 ++-- src/index.css | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Tabs.module.css b/src/Tabs.module.css index 232e46e..69ec67d 100644 --- a/src/Tabs.module.css +++ b/src/Tabs.module.css @@ -25,12 +25,12 @@ } .tab > * { - color: var(--textColor2); + color: var(--textColor4); margin-right: 16px; } .tab svg * { - fill: var(--textColor2); + fill: var(--textColor4); } .tab > :last-child { diff --git a/src/index.css b/src/index.css index 55083b9..f408068 100644 --- a/src/index.css +++ b/src/index.css @@ -32,6 +32,7 @@ limitations under the License. --textColor1: #fff; --textColor2: #6f7882; --textColor3: #8e99a4; + --textColor4: #a9b2bc; --inputBorderColor: #394049; --inputBorderColorFocused: #0086e6; }