SVG 그레디언트
리니어 그레디언트(Linear Gradient)
<svg>
<defs>
<linearGradient id="bl-g" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#00a2ff" />
<stop offset="100%" stop-color="#004d80" />
</linearGradient>
</defs>
<rect
fill="url(#bl-g)"
x="0" y="0"
width="100" height="100" />
</svg>
레이디얼 그레디언트(Radial Gradient)

Last updated