Vanilla Dreamscape Color Palette CSS
/* CSS */
.color-1 {
color: #F6E5D5;
}
.color-2 {
color: #F4D5A4;
}
.color-3 {
color: #F1C84B;
}
.color-4 {
color: #E8A559;
}
.color-5 {
color: #D18F4D;
}
/* CSS Variables */
:root {
--color-1: #F6E5D5;
--color-2: #F4D5A4;
--color-3: #F1C84B;
--color-4: #E8A559;
--color-5: #D18F4D;
}
Vanilla Dreamscape Gradient CSS
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #F6E5D5, #F4D5A4, #F1C84B, #E8A559, #D18F4D);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #F6E5D5, #F4D5A4, #F1C84B, #E8A559, #D18F4D);
}
Vanilla Dreamscape color palette created on .
11 views