Skip to content

Commit f824749

Browse files
committed
Make background scene more transparent
1 parent 41a3eac commit f824749

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/clientModules/backgroundScene.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ function applyDark(dark: boolean): void {
108108
const p = bgEl.querySelector<SVGGElement>("#_pbg_p");
109109
const g = bgEl.querySelector<SVGGElement>("#_pbg_g");
110110
const s = bgEl.querySelector<SVGGElement>("#_pbg_s");
111-
if (p) p.setAttribute("opacity", dark ? "0.12" : "0.09");
112-
if (g) g.setAttribute("opacity", dark ? "0.18" : "0.14");
113-
if (s) s.setAttribute("opacity", dark ? "0.15" : "0.11");
111+
if (p) p.setAttribute("opacity", dark ? "0.08" : "0.06");
112+
if (g) g.setAttribute("opacity", dark ? "0.12" : "0.09");
113+
if (s) s.setAttribute("opacity", dark ? "0.10" : "0.08");
114114
}
115115

116116
// ─── Scroll-based dark detection ──────────────────────────────────────────────

0 commit comments

Comments
 (0)