Files
moodist/src/components/gradient/gradient.module.css
2023-10-05 18:20:25 +03:30

17 lines
318 B
CSS

.gradient {
width: 100%;
height: 3px;
background: linear-gradient(
90deg,
rgb(255 200 71) 3%,
rgb(254 155 70) 16%,
rgb(246 104 78) 28%,
rgb(245 92 157) 40%,
rgb(200 89 228) 52%,
rgb(98 111 234) 65%,
rgb(101 229 178) 77%,
rgb(121 232 101) 89%,
rgb(186 240 112) 100%
);
}