/* CSS */
.color-1 {
color: #FF6B6B;
}
.color-2 {
color: #FF9F6B;
}
.color-3 {
color: #FFD86B;
}
.color-4 {
color: #6BFF6B;
}
.color-5 {
color: #6BFFB3;
}
/* CSS Variables */
:root {
--color-1: #FF6B6B;
--color-2: #FF9F6B;
--color-3: #FFD86B;
--color-4: #6BFF6B;
--color-5: #6BFFB3;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #FF6B6B, #FF9F6B, #FFD86B, #6BFF6B, #6BFFB3);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #FF6B6B, #FF9F6B, #FFD86B, #6BFF6B, #6BFFB3);
}
Retro Pink color palette created on .