Astro カラーパレット

明るさ

彩度

暖かさ

UI Examples

Explore beautiful UI components with Astro palette

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

Astro カラーパレット CSS

/* CSS */
.color-1 {
color: #39316d;
}
.color-2 {
color: #7461b8;
}
.color-3 {
color: #9e92e7;
}
.color-4 {
color: #c0a9ef;
}
.color-5 {
color: #f0b2ea;
}

/* CSS Variables */
:root {
--color-1: #39316d;
--color-2: #7461b8;
--color-3: #9e92e7;
--color-4: #c0a9ef;
--color-5: #f0b2ea;
}

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

/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #39316d, #7461b8, #9e92e7, #c0a9ef, #f0b2ea);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #39316d, #7461b8, #9e92e7, #c0a9ef, #f0b2ea);
}

Astro color palette created on .