Fix tab color

This commit is contained in:
Robert Long 2021-12-13 16:28:50 -08:00
parent 637776dc5e
commit 284a4ef794
2 changed files with 3 additions and 2 deletions

View file

@ -25,12 +25,12 @@
} }
.tab > * { .tab > * {
color: var(--textColor2); color: var(--textColor4);
margin-right: 16px; margin-right: 16px;
} }
.tab svg * { .tab svg * {
fill: var(--textColor2); fill: var(--textColor4);
} }
.tab > :last-child { .tab > :last-child {

View file

@ -32,6 +32,7 @@ limitations under the License.
--textColor1: #fff; --textColor1: #fff;
--textColor2: #6f7882; --textColor2: #6f7882;
--textColor3: #8e99a4; --textColor3: #8e99a4;
--textColor4: #a9b2bc;
--inputBorderColor: #394049; --inputBorderColor: #394049;
--inputBorderColorFocused: #0086e6; --inputBorderColorFocused: #0086e6;
} }