Shades of Gray Color Palette

Brightness

Saturation

Warmth

UI Examples

Explore beautiful UI components with Shades of Gray palette

Share this palette to:

Shades of Gray color palette CSS

/* CSS */
.color-1 {
color: #1a1a1e;
}
.color-2 {
color: #3b3b40;
}
.color-3 {
color: #6c6c75;
}
.color-4 {
color: #a4a4a8;
}
.color-5 {
color: #f4f4f6;
}

/* CSS Variables */
:root {
--color-1: #1a1a1e;
--color-2: #3b3b40;
--color-3: #6c6c75;
--color-4: #a4a4a8;
--color-5: #f4f4f6;
}

Shades of Gray background gradient CSS

/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1a1a1e, #3b3b40, #6c6c75, #a4a4a8, #f4f4f6);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1a1a1e, #3b3b40, #6c6c75, #a4a4a8, #f4f4f6);
}

Shades of Gray color palette created on .