Color Adjustments
Whispers Of Sand Color Palette CSS
/* CSS */
.color-1 {
color: #B7A99A;
}
.color-2 {
color: #D9C3B5;
}
.color-3 {
color: #E5D8C2;
}
.color-4 {
color: #F4E1B8;
}
.color-5 {
color: #F7C5A6;
}
/* CSS Variables */
:root {
--color-1: #B7A99A;
--color-2: #D9C3B5;
--color-3: #E5D8C2;
--color-4: #F4E1B8;
--color-5: #F7C5A6;
}
Whispers Of Sand Gradient CSS
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #B7A99A, #D9C3B5, #E5D8C2, #F4E1B8, #F7C5A6);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #B7A99A, #D9C3B5, #E5D8C2, #F4E1B8, #F7C5A6);
}
Whispers Of Sand color palette created on .
3 views