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