From b710c1711fcee19ee01692851926ba6888866e4e Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Thu, 23 Mar 2023 21:31:39 +0100 Subject: [PATCH] ui: better contrast between active and inactive tabs --- tabby-core/src/theme.new.scss | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tabby-core/src/theme.new.scss b/tabby-core/src/theme.new.scss index ffd3c4c3..572fbe3b 100644 --- a/tabby-core/src/theme.new.scss +++ b/tabby-core/src/theme.new.scss @@ -10,7 +10,7 @@ app-root { &> .content { .tab-bar { - background: var(--theme-bg-more); + background: var(--theme-bg-more-2); .btn-tab-bar { background: transparent; @@ -55,10 +55,11 @@ app-root { } &.active { - // color: $black; + color: var(--theme-fg-less-2); background: var(--bs-body-bg); - // border-left: 1px solid $border-color; - // border-right: 1px solid $border-color; + + border-left: 1px solid var(--theme-bg-less); + border-right: 1px solid var(--theme-bg-less); } } }