Shades of Gray Color Palette
Brightness
Saturation
Warmth
UI Examples
Explore beautiful UI components with Shades of Gray palette
Shades of Gray color palette CSS
/* CSS */
.color-1 {
color: #3b3c4a;
}
.color-2 {
color: #5b5c67;
}
.color-3 {
color: #898a90;
}
.color-4 {
color: #b8b9c1;
}
.color-5 {
color: #e6e7ea;
}
/* CSS Variables */
:root {
--color-1: #3b3c4a;
--color-2: #5b5c67;
--color-3: #898a90;
--color-4: #b8b9c1;
--color-5: #e6e7ea;
}
Shades of Gray background gradient CSS
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #3b3c4a, #5b5c67, #898a90, #b8b9c1, #e6e7ea);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #3b3c4a, #5b5c67, #898a90, #b8b9c1, #e6e7ea);
}
Similar color palettes
Shades of Gray color palette created on .