Skip to content

Commit

Permalink
Alter background
Browse files Browse the repository at this point in the history
  • Loading branch information
Mansive committed Jan 8, 2024
1 parent 2f10b3e commit 163796d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ body {
}

body {
background: #1b2838;
background: #111b28;
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Sans", "Hiragino Kaku Gothic Pro",
"メイリオ", "Meiryo","MS Pゴシック", sans-serif;
text-shadow:
0 0 0.15em black
}
0 0 0.15em black;
}
9 changes: 8 additions & 1 deletion src/components/NetworkShader/NetworkShader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,14 @@ const NetworkShader = () => {

function Scene() {
return (
<Canvas style={{ width: "100vw", height: "100vh", filter: "blur(0.8rem)" }}>
<Canvas
style={{
width: "100vw",
height: "100vh",
filter: "blur(0.8rem)",
mixBlendMode: "hard-light",
}}
>
<Suspense>
<NetworkShader />
</Suspense>
Expand Down

0 comments on commit 163796d

Please sign in to comment.