Skip to content

Commit e2f3467

Browse files
committed
fix: 青色をプライマリカラーに統一
DaisyUIテーマとコンポーネントから青色(hue 240)を削除し、 ブランドカラー #00D372 (lime green) とzinc系に統一 変更内容: - app.css: info カラーを青からzinc系に変更 (oklch 240→260) - app.css: グラデーションメッシュとボーダーの青をprimaryに変更 - StatsGrid.svelte: Projects カードのアクセントカラーを青からzinc系に変更 全カラーテーマがブランドカラーとzinc系で統一された
1 parent c063a48 commit e2f3467

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/app.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
--color-base-200: oklch(97% 0.003 260);
2121
--color-base-300: oklch(94% 0.004 260);
2222
--color-base-content: oklch(20% 0.02 260);
23-
--color-info: oklch(65% 0.19 240);
24-
--color-info-content: oklch(98% 0.01 240);
23+
--color-info: oklch(60% 0.05 260); /* Zinc-based neutral */
24+
--color-info-content: oklch(98% 0.01 260);
2525
--color-success: oklch(76% 0.2 153);
2626
--color-success-content: oklch(15% 0.03 153);
2727
--color-warning: oklch(75% 0.18 75);
@@ -200,7 +200,7 @@ pre,
200200
.gradient-mesh {
201201
background:
202202
radial-gradient(at 40% 20%, oklch(76% 0.2 153 / 0.15) 0, transparent 50%),
203-
radial-gradient(at 80% 0%, oklch(65% 0.19 240 / 0.1) 0, transparent 50%),
203+
radial-gradient(at 80% 0%, oklch(76% 0.2 153 / 0.08) 0, transparent 50%),
204204
radial-gradient(at 0% 50%, oklch(75% 0.18 75 / 0.08) 0, transparent 50%), oklch(97% 0.003 260);
205205
}
206206

@@ -226,7 +226,7 @@ pre,
226226
border: 1px solid transparent;
227227
background:
228228
linear-gradient(white, white) padding-box,
229-
linear-gradient(135deg, oklch(76% 0.2 153 / 0.5), oklch(65% 0.19 240 / 0.3)) border-box;
229+
linear-gradient(135deg, oklch(76% 0.2 153 / 0.5), oklch(76% 0.2 153 / 0.2)) border-box;
230230
}
231231

232232
.text-gradient {

src/lib/components/admin-dashboard/StatsGrid.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
href="/admin/projects"
4545
icon={Folder}
4646
iconColor="info"
47-
accentColor="oklch(65% 0.19 240)"
47+
accentColor="oklch(60% 0.05 260)"
4848
stagger={3}
4949
/>
5050

0 commit comments

Comments
 (0)