ColorsPaletteTool

Dark UI

Night Product Color Palette

Deep app surfaces with readable electric accents. Re-select individual colors or adjust brightness, saturation, and warmth across the palette.

Primary

rgb(10, 15, 30)

Secondary

rgb(28, 37, 64)

Accent

rgb(57, 79, 106)

Deep

rgb(90, 191, 189)

Light

rgb(240, 255, 240)

Adjust palette

Tune the full palette while keeping individual color choices editable.

Export for design and code

Download a palette image or copy CSS generated from the current adjusted colors.

Palette PNG Preview
#0A0F1E#1C2540#394F6A#5ABFBD#F0FFF0
Linear Gradient Preview

Preview of the gradient background generated from this palette.

Night Product CSS

/* CSS */
.color-1 {
  color: #0A0F1E;
}
.color-2 {
  color: #1C2540;
}
.color-3 {
  color: #394F6A;
}
.color-4 {
  color: #5ABFBD;
}
.color-5 {
  color: #F0FFF0;
}

/* CSS Variables */
:root {
  --color-1: #0A0F1E;
  --color-2: #1C2540;
  --color-3: #394F6A;
  --color-4: #5ABFBD;
  --color-5: #F0FFF0;
}

Night Product Linear Gradient CSS

/* Linear Gradient */
.linear-gradient {
  background: linear-gradient(0.25turn, #0A0F1E, #1C2540, #394F6A, #5ABFBD, #F0FFF0);
}