From 2bb57315b3bd2428f3d519193fe82aabaffff956 Mon Sep 17 00:00:00 2001 From: LandWarderer2772 <84073086+LandWarderer2772@users.noreply.github.com> Date: Sat, 18 Oct 2025 18:30:37 +0530 Subject: [PATCH] everythin pure blak now Updated all dark mode and Halloween theme background color variables from dark gray values to pure black (rgb(0, 0, 0)) AMOLED BABYYYYYY --- docs/.vitepress/theme/style.scss | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/docs/.vitepress/theme/style.scss b/docs/.vitepress/theme/style.scss index 4c69e7367..0377fc979 100644 --- a/docs/.vitepress/theme/style.scss +++ b/docs/.vitepress/theme/style.scss @@ -92,10 +92,10 @@ body { /* Apply Halloween theme by default - (for dark mode) */ .dark { - --vp-c-bg: rgb(15, 15, 15) !important; - --vp-c-bg-alt: rgb(12, 12, 12) !important; - --vp-c-bg-elv: rgba(12, 12, 12, 0.8) !important; - --vp-c-bg-soft: rgb(12, 12, 12) !important; + --vp-c-bg: rgb(0, 0, 0) !important; + --vp-c-bg-alt: rgb(0, 0, 0) !important; + --vp-c-bg-elv: rgba(0, 0, 0, 0.8) !important; + --vp-c-bg-soft: rgb(0, 0, 0) !important; --vp-button-alt-bg: #8b5cf6 !important; --vp-button-alt-text: #e9d5ff !important; --vp-button-alt-hover-bg: #a855f7 !important; @@ -109,11 +109,11 @@ body { } .dark body { - background-color: rgb(15, 15, 15) !important; + background-color: rgb(0, 0, 0) !important; } .dark .VPApp, .dark .Layout, .dark .VPContent, .dark .VPHome, .dark .VPHero, .dark #app { - background-color: rgb(15, 15, 15) !important; + background-color: rgb(0, 0, 0) !important; } .dark { @@ -124,9 +124,9 @@ body { --vp-c-brand-soft: theme('colors.swarm.300'); /* Colors: Background */ - --vp-c-bg: rgb(26, 26, 26); - --vp-c-bg-alt: rgb(23, 23, 23); - --vp-c-bg-elv: rgba(23, 23, 23, 0.8); + --vp-c-bg: rgb(0, 0, 0); + --vp-c-bg-alt: rgb(0, 0, 0); + --vp-c-bg-elv: rgba(0, 0, 0, 0.8); /* Colors: Custom Block */ /** Info */ @@ -192,10 +192,10 @@ html[data-halloween-theme]:not(.dark) #app { /* Halloween theme overrides - (for dark mode) */ html[data-halloween-theme].dark { - --vp-c-bg: rgb(15, 15, 15) !important; - --vp-c-bg-alt: rgb(12, 12, 12) !important; - --vp-c-bg-elv: rgba(12, 12, 12, 0.8) !important; - --vp-c-bg-soft: rgb(12, 12, 12) !important; + --vp-c-bg: rgb(0, 0, 0) !important; + --vp-c-bg-alt: rgb(0, 0, 0) !important; + --vp-c-bg-elv: rgba(0, 0, 0, 0.8) !important; + --vp-c-bg-soft: rgb(0, 0, 0) !important; --vp-button-alt-bg: #8b5cf6 !important; --vp-button-alt-text: #e9d5ff !important; --vp-button-alt-hover-bg: #a855f7 !important; @@ -207,11 +207,11 @@ html[data-halloween-theme].dark { --vp-button-brand-hover-border: #ea580c !important; --vp-button-brand-hover-text: #fff !important; - background-color: rgb(15, 15, 15) !important; + background-color: rgb(0, 0, 0) !important; } html[data-halloween-theme].dark body { - background-color: rgb(15, 15, 15) !important; + background-color: rgb(0, 0, 0) !important; } html[data-halloween-theme].dark .VPApp, @@ -220,7 +220,7 @@ html[data-halloween-theme].dark .VPContent, html[data-halloween-theme].dark .VPHome, html[data-halloween-theme].dark .VPHero, html[data-halloween-theme].dark #app { - background-color: rgb(15, 15, 15) !important; + background-color: rgb(0, 0, 0) !important; } .vp-doc a {