Normal Color Palette

Brightness

Saturation

Warmth

UI Examples

Explore beautiful UI components with Normal palette

Share this palette to:

Normal color palette CSS

/* CSS */
.color-1 {
color: #909894;
}
.color-2 {
color: #bbb7aa;
}
.color-3 {
color: #dec6ba;
}
.color-4 {
color: #e3d5c4;
}
.color-5 {
color: #eee0d8;
}

/* CSS Variables */
:root {
--color-1: #909894;
--color-2: #bbb7aa;
--color-3: #dec6ba;
--color-4: #e3d5c4;
--color-5: #eee0d8;
}

Normal background gradient CSS

/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #909894, #bbb7aa, #dec6ba, #e3d5c4, #eee0d8);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #909894, #bbb7aa, #dec6ba, #e3d5c4, #eee0d8);
}

Normal color palette created on .