Five Color Palette

Brightness

Saturation

Warmth

UI Examples

Explore beautiful UI components with Five palette

Share this palette to:

Five color palette CSS

/* CSS */
.color-1 {
color: #f3b9a5;
}
.color-2 {
color: #f8d39b;
}
.color-3 {
color: #e8f1a2;
}
.color-4 {
color: #a7e2d3;
}
.color-5 {
color: #4eb7ac;
}

/* CSS Variables */
:root {
--color-1: #f3b9a5;
--color-2: #f8d39b;
--color-3: #e8f1a2;
--color-4: #a7e2d3;
--color-5: #4eb7ac;
}

Five background gradient CSS

/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #f3b9a5, #f8d39b, #e8f1a2, #a7e2d3, #4eb7ac);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #f3b9a5, #f8d39b, #e8f1a2, #a7e2d3, #4eb7ac);
}

Five color palette created on .