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: #b0b3b5;
}
.color-2 {
color: #7a7e7f;
}
.color-3 {
color: #5c6061;
}
.color-4 {
color: #3e4142;
}
.color-5 {
color: #202122;
}

/* CSS Variables */
:root {
--color-1: #b0b3b5;
--color-2: #7a7e7f;
--color-3: #5c6061;
--color-4: #3e4142;
--color-5: #202122;
}

Shades of Gray background gradient CSS

/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #b0b3b5, #7a7e7f, #5c6061, #3e4142, #202122);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #b0b3b5, #7a7e7f, #5c6061, #3e4142, #202122);
}

Shades of Gray color palette created on .