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