fix(style): global theme settings in login

This commit is contained in:
jialin
2025-04-28 18:22:05 +08:00
parent bcfa80a2d5
commit beb395ce32
17 changed files with 165 additions and 188 deletions
+20
View File
@@ -0,0 +1,20 @@
<svg xmlns="http://www.w3.org/2000/svg" width="1920" height="1080">
<filter id="noiseFilter">
<feTurbulence
type="fractalNoise"
baseFrequency="0.6"
numOctaves="2"
stitchTiles="stitch"
/>
<feColorMatrix
type="matrix"
values="1 0 0 0 0
0 1 0 0 0
0 0 1 0 0
0 0 0 0.2 0" />
<feGaussianBlur stdDeviation="0.6" />
</filter>
<rect width="100%" height="100%" fill="#181818"/>
<rect width="100%" height="100%" filter="url(#noiseFilter)"/>
</svg>

After

Width:  |  Height:  |  Size: 546 B