Spotlight Color Palette

Brightness

Saturation

Warmth

UI Examples

Explore beautiful UI components with Spotlight palette

Share this palette to:

Spotlight color palette CSS

/* CSS */
.color-1 {
color: #003d00;
}
.color-2 {
color: #002e00;
}
.color-3 {
color: #001f00;
}
.color-4 {
color: #000000;
}
.color-5 {
color: #00002e;
}

/* CSS Variables */
:root {
--color-1: #003d00;
--color-2: #002e00;
--color-3: #001f00;
--color-4: #000000;
--color-5: #00002e;
}

Spotlight background gradient CSS

/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #003d00, #002e00, #001f00, #000000, #00002e);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #003d00, #002e00, #001f00, #000000, #00002e);
}

Spotlight color palette created on .