All checks were successful
Build and Deploy / Build & Push (push) Successful in 3m9s
- Buyout days are now treated as closed unless they carry a Passholder Preview event, in which case they surface as a distinct purple cell in the UI showing "Passholder" + hours - DB gains a special_type column (auto-migrated on next startup) - scrape.ts threads specialType through to upsertDay - debug.ts now shows events, isBuyout, isPassholderPreview, and specialType in the parsed result section Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
52 lines
1001 B
CSS
52 lines
1001 B
CSS
@import "tailwindcss";
|
|
|
|
@theme {
|
|
--color-bg: #0a0f1e;
|
|
--color-surface: #111827;
|
|
--color-surface-2: #1a2235;
|
|
--color-border: #1f2d45;
|
|
--color-text: #f1f5f9;
|
|
--color-text-muted: #64748b;
|
|
--color-text-dim: #334155;
|
|
|
|
--color-open-bg: #052e16;
|
|
--color-open-border: #166534;
|
|
--color-open-text: #4ade80;
|
|
--color-open-hours: #bbf7d0;
|
|
|
|
--color-ph-bg: #1e0f2e;
|
|
--color-ph-border: #7e22ce;
|
|
--color-ph-hours: #e9d5ff;
|
|
--color-ph-label: #c084fc;
|
|
|
|
--color-today-bg: #0c1a3d;
|
|
--color-today-border: #2563eb;
|
|
--color-today-text: #93c5fd;
|
|
|
|
--color-weekend-header: #141f35;
|
|
}
|
|
|
|
:root {
|
|
background-color: var(--color-bg);
|
|
color: var(--color-text);
|
|
font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 6px;
|
|
height: 6px;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
background: var(--color-bg);
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--color-border);
|
|
border-radius: 3px;
|
|
}
|