Rich Color Palette

Brightness

Saturation

Warmth

UI Examples

Explore beautiful UI components with Rich palette

Share this palette to:

Rich color palette CSS

/* CSS */
.color-1 {
color: #d99f20;
}
.color-2 {
color: #b5690d;
}
.color-3 {
color: #8e3f0b;
}
.color-4 {
color: #5a2b1c;
}
.color-5 {
color: #3d1f1f;
}

/* CSS Variables */
:root {
--color-1: #d99f20;
--color-2: #b5690d;
--color-3: #8e3f0b;
--color-4: #5a2b1c;
--color-5: #3d1f1f;
}

Rich background gradient CSS

/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #d99f20, #b5690d, #8e3f0b, #5a2b1c, #3d1f1f);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #d99f20, #b5690d, #8e3f0b, #5a2b1c, #3d1f1f);
}

Rich color palette created on .