Astro カラーパレット
美しいAstroカラーパレットをご紹介します。mirage (#1a202d), kashmir blue (#4b5b8b), danube (#789ad9), regent st blue (#a2c7e7) and alice blue (#f5faff)で構成されています。
明るさ
彩度
暖かさ
💡 できること
ColorMagicでは簡単に以下のことができます:
- •デザインに正確なHEXコードとRGB値をコピー
- •明度、彩度、暖度を調整して新しいバリエーションを作成
- •UIコンポーネントをプレビューして、実際のインターフェースでの色の働きを確認
- •背景グラデーションやカラー変数を含むCSSコードをコピー
- •パレットをダウンロード
- •チームメンバーやクライアントとパレットを共有
🎨 UIコンポーネントのプレビュー
UI例
Astroパレットを使った美しいUIコンポーネントを探索
💻 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 .