commit 5a058183450123a9b3310ddabbc1035aa6b178fe
parent 37a8aeb235630687daaf45c2dfc70de4a3336efb
Author: Amit Dutta <amitdutta4255@gmail.com>
Date: Thu, 2 Jul 2026 13:10:43 +0530
fixed: (bug) Breadcrumbs .crumb-sep was not showing color properly.
Diffstat:
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/docs/.vitepress/theme/components/Breadcrumbs.vue b/docs/.vitepress/theme/components/Breadcrumbs.vue
@@ -101,6 +101,6 @@ function humanize(slug) {
.crumb-sep {
margin: 0 8px;
- color: var(--vp-c-divider);
+ color: var(--vp-c-b-divider);
}
</style>
\ No newline at end of file
diff --git a/docs/.vitepress/theme/style.css b/docs/.vitepress/theme/style.css
@@ -38,6 +38,7 @@
--vp-c-brand-3: #6d28d9;
--vp-c-brand: #8839ef;
--banner-bg: #8839ef;
+ --vp-c-b-divider: #000000;
/* Home hero gradient (light) */
--vp-home-hero-image-background-image: linear-gradient(
@@ -74,6 +75,7 @@
--vp-c-bg-elv: #000000;
--vp-c-bg-soft: #0a0a0a;
--vp-c-divider: #1a1a1a;
+ --vp-c-b-divider: #ffffff;
/* Brand */
--vp-c-brand-1: #cba6f7;