/* CSS */
.color-1 {
color: #FF3D5A;
}
.color-2 {
color: #F8C749;
}
.color-3 {
color: #3DFF7B;
}
.color-4 {
color: #4D70FF;
}
.color-5 {
color: #A347FF;
}
/* CSS Variables */
:root {
--color-1: #FF3D5A;
--color-2: #F8C749;
--color-3: #3DFF7B;
--color-4: #4D70FF;
--color-5: #A347FF;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #FF3D5A, #F8C749, #3DFF7B, #4D70FF, #A347FF);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #FF3D5A, #F8C749, #3DFF7B, #4D70FF, #A347FF);
}
Psychedelic Pink color palette created on .