Astro カラーパレット

明るさ

彩度

暖かさ

UI Examples

Explore beautiful UI components with Astro palette

このパレットを共有する先:

Astro カラーパレット CSS

/* CSS */
.color-1 {
color: #32328b;
}
.color-2 {
color: #5353c6;
}
.color-3 {
color: #6e7ef7;
}
.color-4 {
color: #9e92fc;
}
.color-5 {
color: #f9aef9;
}

/* CSS Variables */
:root {
--color-1: #32328b;
--color-2: #5353c6;
--color-3: #6e7ef7;
--color-4: #9e92fc;
--color-5: #f9aef9;
}

Astro の背景のグラデーション CSS

/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #32328b, #5353c6, #6e7ef7, #9e92fc, #f9aef9);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #32328b, #5353c6, #6e7ef7, #9e92fc, #f9aef9);
}

Astro color palette created on .