Astro カラーパレット
明るさ
彩度
暖かさ
UI Examples
Explore beautiful UI components with Astro palette
Astro カラー パレット PNG 画像
Astro カラーパレット CSS
/* CSS */
.color-1 {
color: #3a3e7e;
}
.color-2 {
color: #5c709d;
}
.color-3 {
color: #8d9dc3;
}
.color-4 {
color: #b3c8e0;
}
.color-5 {
color: #f1f6f9;
}
/* CSS Variables */
:root {
--color-1: #3a3e7e;
--color-2: #5c709d;
--color-3: #8d9dc3;
--color-4: #b3c8e0;
--color-5: #f1f6f9;
}
Astro の背景のグラデーション CSS
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #3a3e7e, #5c709d, #8d9dc3, #b3c8e0, #f1f6f9);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #3a3e7e, #5c709d, #8d9dc3, #b3c8e0, #f1f6f9);
}
似たようなカラーパレット
Astro color palette created on .