From e4b21a3125d92bde3c55e6398ac413201627e043 Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Thu, 27 Jan 2022 12:59:12 +0100 Subject: [PATCH] chore: make docs sidebar hover and active color same unleash grey. --- website/src/css/custom.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/website/src/css/custom.css b/website/src/css/custom.css index 30206b7385..87ef50ea89 100644 --- a/website/src/css/custom.css +++ b/website/src/css/custom.css @@ -8,8 +8,9 @@ /* You can override the default Infima variables here. */ :root { --unleash-color-purple: #635dc5; + --unleash-color-gray: #ecebeb; - --unleash-color-admonition-background: #ecebeb; + --unleash-color-admonition-background: var(--unleash-color-gray); --unleash-color-admonition-border: #999; --unleash-color-admonition-text: #2b2b2b; @@ -23,9 +24,12 @@ --ifm-code-font-size: 90%; --ifm-font-size-base: 15px; --ifm-link-color: var(--unleash-color-purple); + --ifm-menu-color-background-active: var(--unleash-color-gray); + --ifm-menu-color-background-hover: var(--unleash-color-gray); --navbar-link-color: #122d33; } + footer { --ifm-footer-link-hover-color: var(--ifm-footer-link-color); }