/* CSS */
.color-1 {
color: #F7D3A6;
}
.color-2 {
color: #F2A769;
}
.color-3 {
color: #EF7B4D;
}
.color-4 {
color: #C94E3B;
}
.color-5 {
color: #6C3D3D;
}
/* CSS Variables */
:root {
--color-1: #F7D3A6;
--color-2: #F2A769;
--color-3: #EF7B4D;
--color-4: #C94E3B;
--color-5: #6C3D3D;
}
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #F7D3A6, #F2A769, #EF7B4D, #C94E3B, #6C3D3D);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #F7D3A6, #F2A769, #EF7B4D, #C94E3B, #6C3D3D);
}
Ester's Embrace color palette created on .