Astro Color Palette
Brightness
Saturation
Warmth
UI Examples
Explore beautiful UI components with Astro palette
Astro color palette PNG image
Astro color palette CSS
/* CSS */
.color-1 {
color: #0000e0;
}
.color-2 {
color: #6d4dff;
}
.color-3 {
color: #c09eff;
}
.color-4 {
color: #d6adff;
}
.color-5 {
color: #ffb3ff;
}
/* CSS Variables */
:root {
--color-1: #0000e0;
--color-2: #6d4dff;
--color-3: #c09eff;
--color-4: #d6adff;
--color-5: #ffb3ff;
}
Astro background gradient CSS
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #0000e0, #6d4dff, #c09eff, #d6adff, #ffb3ff);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #0000e0, #6d4dff, #c09eff, #d6adff, #ffb3ff);
}
Similar color palettes
Astro color palette created on .