more visual tweaks

This commit is contained in:
Evan Jarrett
2026-01-15 00:17:48 -06:00
parent eb3eed5f7a
commit 908e124917
10 changed files with 101 additions and 46 deletions
+40 -6
View File
@@ -23,14 +23,16 @@
@plugin "daisyui/theme" {
name: "light";
default: true;
--color-primary: oklch(75% 0.12 175); /* #4ECDC4 teal */
--color-accent: oklch(68% 0.18 25); /* #FF6B6B coral */
--color-primary: oklch(75% 0.12 175); /* #4ECDC4 teal (body) */
--color-secondary: oklch(68% 0.18 25); /* #FF6B6B coral (cheek) */
--color-accent: oklch(52% 0.08 185); /* #2B7A78 dark teal (mane) */
}
@plugin "daisyui/theme" {
name: "dark";
--color-primary: oklch(78% 0.12 175); /* #5ED4CB slightly brighter */
--color-accent: oklch(72% 0.16 25); /* #FF8080 */
--color-primary: oklch(78% 0.12 175); /* #5ED4CB teal */
--color-secondary: oklch(72% 0.16 25); /* #FF8080 coral */
--color-accent: oklch(58% 0.09 185); /* #3D8B89 dark teal */
}
/* ========================================
@@ -38,12 +40,12 @@
======================================== */
:root {
--shadow-card-hover:
0 8px 25px oklch(75% 0.12 175 / 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
0 8px 25px oklch(75% 0.12 175 / 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
}
[data-theme="dark"] {
--shadow-card-hover:
0 8px 25px oklch(78% 0.12 175 / 0.1), 0 4px 12px rgba(0, 0, 0, 0.2);
0 8px 25px oklch(78% 0.12 175 / 0.15), 0 4px 12px rgba(0, 0, 0, 0.2);
}
/* ========================================
@@ -62,6 +64,19 @@
display: block;
}
/* ========================================
STICKY FOOTER LAYOUT
======================================== */
@layer base {
body {
@apply min-h-screen flex flex-col;
}
main {
@apply flex-1;
}
}
/* ========================================
TYPOGRAPHY (PROSE) THEME INTEGRATION
======================================== */
@@ -121,6 +136,25 @@
@apply w-62 opacity-100;
}
/* ----------------------------------------
HELM BRAND COLOR (official Helm blue #0F1689)
---------------------------------------- */
.text-helm {
@apply text-[#0F1689];
}
[data-theme="dark"] .text-helm {
@apply text-[#6B7FFF];
}
.badge-helm {
--badge-color: #0F1689;
}
[data-theme="dark"] .badge-helm {
--badge-color: #6B7FFF;
}
/* ----------------------------------------
CARD EXTENSIONS
---------------------------------------- */