Skip to content

Commit

Permalink
Merge pull request #3 from Mansive/background-alter
Browse files Browse the repository at this point in the history
Alter background
  • Loading branch information
Mansive authored Jan 8, 2024
2 parents 2f10b3e + 6127fbc commit d43dc54
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: #1c2c41;
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 d43dc54

Please sign in to comment.