From 6166907d08ddb5d39748bcb3a60ae00bb45da671 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Mon, 21 Sep 2020 15:04:58 -0400 Subject: [PATCH] Tab bar: Change selected-tab highlight color --- scss/components/_tabBar.scss | 2 +- scss/themes/_light.scss | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/scss/components/_tabBar.scss b/scss/components/_tabBar.scss index 25f1ccb0fa..7d4c3fd267 100644 --- a/scss/components/_tabBar.scss +++ b/scss/components/_tabBar.scss @@ -28,7 +28,7 @@ } &.selected { - border-top: 2px solid #CC2936; + border-top: 2px solid $tab-background-color-selected; } .tab-name { diff --git a/scss/themes/_light.scss b/scss/themes/_light.scss index 67f334cd93..a6b7fdcab6 100644 --- a/scss/themes/_light.scss +++ b/scss/themes/_light.scss @@ -87,6 +87,7 @@ $toolbar-border: .5px solid $toolbar-border-color; // Tab bar $tab-border: $toolbar-border; +$tab-background-color-selected: #678AC5; // Icon $icon-color: $secondary;