Shades of Black Color Palette

Brightness

Saturation

Warmth

UI Examples

Explore beautiful UI components with Shades of Black palette

Share this palette to:

Shades of Black color palette CSS

/* CSS */
.color-1 {
color: #1c1c1c;
}
.color-2 {
color: #404040;
}
.color-3 {
color: #737373;
}
.color-4 {
color: #a6a6a6;
}
.color-5 {
color: #d9d9d9;
}

/* CSS Variables */
:root {
--color-1: #1c1c1c;
--color-2: #404040;
--color-3: #737373;
--color-4: #a6a6a6;
--color-5: #d9d9d9;
}

Shades of Black background gradient CSS

/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1c1c1c, #404040, #737373, #a6a6a6, #d9d9d9);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1c1c1c, #404040, #737373, #a6a6a6, #d9d9d9);
}

Shades of Black color palette created on .