add mascot with new colors

This commit is contained in:
Evan Jarrett
2026-01-15 21:45:31 -06:00
parent 908e124917
commit 950b1f94d0
18 changed files with 404 additions and 361 deletions
+23 -8
View File
@@ -23,16 +23,16 @@
@plugin "daisyui/theme" {
name: "light";
default: true;
--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) */
--color-primary: oklch(50% 0.08 230); /* slate blue (manatee body) */
--color-secondary: oklch(78% 0.08 30); /* soft coral (nose/flippers) */
--color-accent: oklch(35% 0.12 250); /* deep ocean blue (contrast) */
}
@plugin "daisyui/theme" {
name: "dark";
--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 */
--color-primary: oklch(60% 0.09 230); /* lighter slate blue for dark mode */
--color-secondary: oklch(80% 0.08 30); /* soft coral */
--color-accent: oklch(50% 0.12 250); /* lighter ocean blue */
}
/* ========================================
@@ -40,12 +40,12 @@
======================================== */
:root {
--shadow-card-hover:
0 8px 25px oklch(75% 0.12 175 / 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
0 8px 25px oklch(50% 0.08 230 / 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
}
[data-theme="dark"] {
--shadow-card-hover:
0 8px 25px oklch(78% 0.12 175 / 0.15), 0 4px 12px rgba(0, 0, 0, 0.2);
0 8px 25px oklch(60% 0.09 230 / 0.2), 0 4px 12px rgba(0, 0, 0, 0.2);
}
/* ========================================
@@ -155,6 +155,21 @@
--badge-color: #6B7FFF;
}
/* ----------------------------------------
TIER BADGE COLORS
---------------------------------------- */
.badge-owner {
@apply badge-primary;
}
.badge-deckhand {
@apply badge-ghost;
}
.badge-bosun {
@apply badge-secondary;
}
/* ----------------------------------------
CARD EXTENSIONS
---------------------------------------- */