/* CSS */
.color-1 {
color: #FF8052;
}
.color-2 {
color: #FFA07A;
}
.color-3 {
color: #FFD900;
}
.color-4 {
color: #FFFFE0;
}
.color-5 {
color: #FFE3B3;
}
/* CSS Variables */
:root {
--color-1: #FF8052;
--color-2: #FFA07A;
--color-3: #FFD900;
--color-4: #FFFFE0;
--color-5: #FFE3B3;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #FF8052, #FFA07A, #FFD900, #FFFFE0, #FFE3B3);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #FF8052, #FFA07A, #FFD900, #FFFFE0, #FFE3B3);
}
Coral Sunbeam Vibes color palette created on .