feat: update background colors
test-build / guarddog (push) Successful in 1m12s
test-build / build (push) Successful in 1m30s

This commit is contained in:
2026-05-21 15:57:34 -05:00
parent 901a641b59
commit f71b28adf0
5 changed files with 18 additions and 22 deletions
+1 -10
View File
@@ -171,7 +171,7 @@ const normalizeTitle = !title ? global.name : `${title} | ${global.name}`;
.bg {
animation: slide 25s ease-in-out infinite alternate;
will-change: transform;
background-image: linear-gradient(-55deg, var(--bg-primary) 33.3%, var(--bg-secondary) 33.3%, var(--bg-secondary) 66.6%, var(--bg-tertiary) 66.6%);
background-image: linear-gradient(-55deg, var(--color-background-1) 33.3%, var(--color-background-2) 33.3%, var(--color-background-2) 66.6%, var(--color-background-3) 66.6%);
filter: blur(40px);
top: 0;
bottom: 0;
@@ -180,15 +180,6 @@ const normalizeTitle = !title ? global.name : `${title} | ${global.name}`;
opacity: .5;
position: fixed;
z-index: -1;
--bg-primary: #e5e5e5;
--bg-secondary: #dce3eb;
--bg-tertiary: #f4f6f8;
}
:global(.dark) .bg {
--bg-primary: #3b3836;
--bg-secondary: #332f2e;
--bg-tertiary: #44403c;
}
.bg2 {