From 8eff9c172934bf14937331dba456ffcd513172b0 Mon Sep 17 00:00:00 2001 From: Alice Mikhaylenko Date: Tue, 14 May 2024 19:50:27 +0400 Subject: [PATCH] demo: Use a neutral accent color for tab pages They are colorful, so blue clashes there. --- demo/style-dark.css | 6 ++++++ demo/style.css | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/demo/style-dark.css b/demo/style-dark.css index bc414486c..f3755fbb8 100644 --- a/demo/style-dark.css +++ b/demo/style-dark.css @@ -20,6 +20,12 @@ --accent-color: var(--orange-1); } +.tab-page { + --accent-bg-color: alpha(white, .6); + --accent-fg-color: alpha(black, .8); + --accent-color: alpha(white, .75); +} + .tab-page-color-1 { background: shade(var(--blue-5), 0.7); } diff --git a/demo/style.css b/demo/style.css index 39605bbb3..c3369b418 100644 --- a/demo/style.css +++ b/demo/style.css @@ -47,6 +47,12 @@ stacksidebar { background: linear-gradient(to bottom, var(--green-2), var(--green-5)); } +.tab-page { + --accent-bg-color: alpha(black, .6); + --accent-fg-color: white; + --accent-color: alpha(black, .75); +} + .tab-page-color-1 { background: shade(var(--blue-1), 1.2); } -- GitLab