aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/appearance/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/appearance/index.ts')
-rw-r--r--src/features/appearance/index.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/features/appearance/index.ts b/src/features/appearance/index.ts
index 7bda62cba..4323fa7cc 100644
--- a/src/features/appearance/index.ts
+++ b/src/features/appearance/index.ts
@@ -38,7 +38,6 @@ function generateAccentStyle(accentColorStr) {
38 .theme__dark .app .sidebar .sidebar__button.is-active, 38 .theme__dark .app .sidebar .sidebar__button.is-active,
39 .sidebar .sidebar__button.is-muted, 39 .sidebar .sidebar__button.is-muted,
40 .sidebar .sidebar__button.is-active, 40 .sidebar .sidebar__button.is-active,
41 .tab-item.is-active,
42 .settings .account .invoices .invoices__action button, 41 .settings .account .invoices .invoices__action button,
43 .settings-navigation .settings-navigation__link.is-active .badge, 42 .settings-navigation .settings-navigation__link.is-active .badge,
44 a.link, 43 a.link,
@@ -78,7 +77,7 @@ function generateAccentStyle(accentColorStr) {
78 border-right-color: ${accentColorStr}; 77 border-right-color: ${accentColorStr};
79 } 78 }
80 79
81 .franz-form .franz-form__radio.is-selected { 80 .franz-form .franz-form__radio.is-selected, .tab-item.is-active {
82 border-color: ${accentColorStr}; 81 border-color: ${accentColorStr};
83 } 82 }
84 83
@@ -107,7 +106,7 @@ function generateAccentStyle(accentColorStr) {
107 } 106 }
108 107
109 .tab-item.is-active { 108 .tab-item.is-active {
110 background: ${accentColor.lighten(0.35).hex()}; 109 background: ${accentColor.lightness(90).hex()};
111 } 110 }
112 `; 111 `;
113} 112}