diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index e824354..a8413d9 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -293,10 +293,10 @@ const { site, title, tagline } = Astro.props; --stripesDark: repeating-linear-gradient( 180deg, #000 0%, - #000 7%, + #000 1%, transparent 10%, transparent 12%, - #000 16% + #000 22% ); --rainbow: repeating-linear-gradient( 180deg, @@ -332,8 +332,14 @@ const { site, title, tagline } = Astro.props; } [data-new-ui-theme="dark"] { - .rays_container, .rays_content, .rays { display: none !important; filter: none; opacity: 0;} - .rays::after {display: none !important; background: none; opacity: 0;} + .rays { + background-image: var(--stripesDark), var(--rainbow); + filter: blur(6px) opacity(8%) saturate(200%); + -webkit-filter: blur(6px) opacity(8%) saturate(200%); + } + .rays::after { + background-image: var(--stripesDark), var(--rainbow); + } }