Dark Blue Color Palette

Brightness

Saturation

Warmth

UI Examples

Explore beautiful UI components with Dark Blue palette

Share this palette to:

Dark Blue color palette CSS

/* CSS */
.color-1 {
color: #1a1c2d;
}
.color-2 {
color: #2f3046;
}
.color-3 {
color: #494b6e;
}
.color-4 {
color: #6e6f91;
}
.color-5 {
color: #9c9eab;
}

/* CSS Variables */
:root {
--color-1: #1a1c2d;
--color-2: #2f3046;
--color-3: #494b6e;
--color-4: #6e6f91;
--color-5: #9c9eab;
}

Dark Blue background gradient CSS

/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1a1c2d, #2f3046, #494b6e, #6e6f91, #9c9eab);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1a1c2d, #2f3046, #494b6e, #6e6f91, #9c9eab);
}

Dark Blue color palette created on .