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: #1f1b79;
}
.color-2 {
color: #4b3b9b;
}
.color-3 {
color: #7b5db1;
}
.color-4 {
color: #a480db;
}
.color-5 {
color: #d2a8f0;
}
/* CSS Variables */
:root {
--color-1: #1f1b79;
--color-2: #4b3b9b;
--color-3: #7b5db1;
--color-4: #a480db;
--color-5: #d2a8f0;
}
Astro background gradient CSS
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1f1b79, #4b3b9b, #7b5db1, #a480db, #d2a8f0);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1f1b79, #4b3b9b, #7b5db1, #a480db, #d2a8f0);
}
Similar color palettes
Astro color palette created on .