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: #1a1f3d;
}
.color-2 {
color: #3b4a8c;
}
.color-3 {
color: #587ebb;
}
.color-4 {
color: #87b8e8;
}
.color-5 {
color: #c6e9f1;
}
/* CSS Variables */
:root {
--color-1: #1a1f3d;
--color-2: #3b4a8c;
--color-3: #587ebb;
--color-4: #87b8e8;
--color-5: #c6e9f1;
}
Astro background gradient CSS
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1a1f3d, #3b4a8c, #587ebb, #87b8e8, #c6e9f1);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1a1f3d, #3b4a8c, #587ebb, #87b8e8, #c6e9f1);
}
Similar color palettes
Astro color palette created on .