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: #1e1e76;
}
.color-2 {
color: #2e2eb8;
}
.color-3 {
color: #5050f7;
}
.color-4 {
color: #8080ff;
}
.color-5 {
color: #b3b3ff;
}
/* CSS Variables */
:root {
--color-1: #1e1e76;
--color-2: #2e2eb8;
--color-3: #5050f7;
--color-4: #8080ff;
--color-5: #b3b3ff;
}
Astro background gradient CSS
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1e1e76, #2e2eb8, #5050f7, #8080ff, #b3b3ff);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1e1e76, #2e2eb8, #5050f7, #8080ff, #b3b3ff);
}
Similar color palettes
Astro color palette created on .