Astro Tavolozza dei colori

Luminosità

Saturazione

Calore

UI Examples

Explore beautiful UI components with Astro palette

Condividi questa palette a:

tavolozza dei colori Astro CSS

/* CSS */
.color-1 {
color: #1b3d74;
}
.color-2 {
color: #3b5f8c;
}
.color-3 {
color: #6c9cc1;
}
.color-4 {
color: #a2c7e7;
}
.color-5 {
color: #f3f4f6;
}

/* CSS Variables */
:root {
--color-1: #1b3d74;
--color-2: #3b5f8c;
--color-3: #6c9cc1;
--color-4: #a2c7e7;
--color-5: #f3f4f6;
}

CSS con gradiente di sfondo Astro

/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #1b3d74, #3b5f8c, #6c9cc1, #a2c7e7, #f3f4f6);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #1b3d74, #3b5f8c, #6c9cc1, #a2c7e7, #f3f4f6);
}

Astro color palette created on .