From 35855baa6084cb51e1cb5fdef75cc8342c2fcfdd Mon Sep 17 00:00:00 2001 From: Gabriel Cozma Date: Tue, 2 Jan 2024 15:18:56 +0200 Subject: [PATCH] chore(docs): changed brand button text color for better contrast (#128) --- docs/.vitepress/theme/style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/.vitepress/theme/style.css b/docs/.vitepress/theme/style.css index aed02bf6f..f992d0377 100644 --- a/docs/.vitepress/theme/style.css +++ b/docs/.vitepress/theme/style.css @@ -76,13 +76,13 @@ :root { --vp-button-brand-border: transparent; - --vp-button-brand-text: var(--vp-c-white); + --vp-button-brand-text: var(--vp-c-black); --vp-button-brand-bg: var(--vp-c-brand-3); --vp-button-brand-hover-border: transparent; - --vp-button-brand-hover-text: var(--vp-c-white); + --vp-button-brand-hover-text: var(--vp-c-black); --vp-button-brand-hover-bg: var(--vp-c-brand-2); --vp-button-brand-active-border: transparent; - --vp-button-brand-active-text: var(--vp-c-white); + --vp-button-brand-active-text: var(--vp-c-black); --vp-button-brand-active-bg: var(--vp-c-brand-1); }