2026-08-01 01:15:31 +00:00
|
|
|
@tailwind base;
|
|
|
|
|
@tailwind components;
|
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
|
|
@layer base {
|
|
|
|
|
:root {
|
2026-09-09 00:38:53 +00:00
|
|
|
/* Typography */
|
2026-08-10 08:53:18 +00:00
|
|
|
--font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
|
|
|
"Helvetica Neue", Arial, sans-serif;
|
2026-09-09 01:13:49 +00:00
|
|
|
--font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, "Cascadia Code", "Source Code Pro",
|
|
|
|
|
Menlo, Consolas, "DejaVu Sans Mono", monospace;
|
2026-08-10 08:53:18 +00:00
|
|
|
|
2026-09-09 01:13:49 +00:00
|
|
|
/* Control heights & sizing */
|
|
|
|
|
--control-height: 40px;
|
|
|
|
|
--control-height-sm: 32px;
|
|
|
|
|
--control-height-lg: 48px;
|
|
|
|
|
--size: 16px;
|
|
|
|
|
--size-sm: 12px;
|
|
|
|
|
--size-md: 20px;
|
|
|
|
|
--size-lg: 24px;
|
|
|
|
|
--size-xl: 32px;
|
|
|
|
|
--size-xxl: 48px;
|
2026-08-10 08:53:18 +00:00
|
|
|
|
2026-09-09 01:13:49 +00:00
|
|
|
/* Motion */
|
|
|
|
|
--duration-fast: 0.1s;
|
|
|
|
|
--duration-normal: 0.2s;
|
|
|
|
|
--duration-slow: 0.3s;
|
|
|
|
|
--ease-default: cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
|
|
|
|
|
|
|
|
/* Light mode — Buzzbee palette */
|
|
|
|
|
--background: 0 0% 100%;
|
|
|
|
|
--foreground: 0 0% 6.7%;
|
|
|
|
|
--card: 220 13% 97%;
|
|
|
|
|
--card-foreground: 0 0% 6.7%;
|
2026-08-01 01:15:31 +00:00
|
|
|
--popover: 0 0% 100%;
|
2026-09-09 01:13:49 +00:00
|
|
|
--popover-foreground: 0 0% 6.7%;
|
|
|
|
|
--primary: 217 91% 60%;
|
|
|
|
|
--primary-foreground: 0 0% 100%;
|
|
|
|
|
--secondary: 210 40% 96%;
|
|
|
|
|
--secondary-foreground: 0 0% 18%;
|
|
|
|
|
--muted: 210 40% 96%;
|
|
|
|
|
--muted-foreground: 220 9% 45%;
|
|
|
|
|
--accent: 210 100% 95%;
|
|
|
|
|
--accent-foreground: 222 100% 27%;
|
2026-09-09 00:38:53 +00:00
|
|
|
--destructive: 0 84% 60%;
|
2026-09-09 01:13:49 +00:00
|
|
|
--destructive-foreground: 0 0% 100%;
|
|
|
|
|
--border: 214 32% 88%;
|
|
|
|
|
--input: 214 32% 88%;
|
|
|
|
|
--ring: 210 100% 75%;
|
|
|
|
|
--radius: 0.5rem;
|
2026-09-09 00:38:53 +00:00
|
|
|
|
|
|
|
|
/* Interactive accent — pinned vibrant blue */
|
2026-08-01 02:00:24 +00:00
|
|
|
--accent-hsl: 217 91% 60%;
|
2026-09-09 00:38:53 +00:00
|
|
|
|
|
|
|
|
/* Shell surfaces */
|
|
|
|
|
--sidebar-bg: 0 0% 100%;
|
2026-09-09 01:13:49 +00:00
|
|
|
--sidebar-border: 214 32% 88%;
|
|
|
|
|
--topbar-bg: 0 0% 100%;
|
2026-08-01 01:15:31 +00:00
|
|
|
}
|
|
|
|
|
|
2026-09-09 00:38:53 +00:00
|
|
|
/* Density modes */
|
2026-08-10 08:53:18 +00:00
|
|
|
.density-compact {
|
2026-09-09 01:13:49 +00:00
|
|
|
--control-height: 28px;
|
|
|
|
|
--control-height-sm: 21px;
|
|
|
|
|
--control-height-lg: 35px;
|
|
|
|
|
--size: 12px;
|
|
|
|
|
--size-sm: 8px;
|
|
|
|
|
--size-md: 16px;
|
|
|
|
|
--size-lg: 16px;
|
|
|
|
|
--size-xl: 24px;
|
|
|
|
|
--size-xxl: 32px;
|
2026-08-10 08:53:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.density-spacious {
|
|
|
|
|
--density-scale: 1.15;
|
|
|
|
|
}
|
|
|
|
|
|
2026-09-09 01:13:49 +00:00
|
|
|
/* Dark mode — Buzzbee dark palette */
|
2026-08-01 01:15:31 +00:00
|
|
|
.dark {
|
2026-09-09 01:13:49 +00:00
|
|
|
--background: 0 0% 8%;
|
|
|
|
|
--foreground: 0 0% 86%;
|
|
|
|
|
--card: 0 0% 11%;
|
|
|
|
|
--card-foreground: 0 0% 86%;
|
|
|
|
|
--popover: 0 0% 15%;
|
|
|
|
|
--popover-foreground: 0 0% 86%;
|
|
|
|
|
--primary: 212 70% 55%;
|
|
|
|
|
--primary-foreground: 0 0% 100%;
|
|
|
|
|
--secondary: 0 0% 19%;
|
|
|
|
|
--secondary-foreground: 0 0% 86%;
|
|
|
|
|
--muted: 0 0% 19%;
|
|
|
|
|
--muted-foreground: 0 0% 49%;
|
|
|
|
|
--accent: 216 47% 13%;
|
|
|
|
|
--accent-foreground: 205 80% 85%;
|
|
|
|
|
--destructive: 0 60% 63%;
|
|
|
|
|
--destructive-foreground: 0 0% 100%;
|
|
|
|
|
--border: 0 0% 24%;
|
|
|
|
|
--input: 0 0% 24%;
|
|
|
|
|
--ring: 212 60% 50%;
|
|
|
|
|
--accent-hsl: 212 70% 55%;
|
2026-09-09 00:38:53 +00:00
|
|
|
|
|
|
|
|
/* Shell surfaces — slightly elevated from background */
|
2026-09-09 01:13:49 +00:00
|
|
|
--sidebar-bg: 0 0% 11%;
|
|
|
|
|
--sidebar-border: 0 0% 24%;
|
|
|
|
|
--topbar-bg: 0 0% 8%;
|
2026-08-01 01:15:31 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@layer base {
|
|
|
|
|
* {
|
|
|
|
|
@apply border-border;
|
|
|
|
|
}
|
|
|
|
|
body {
|
|
|
|
|
@apply bg-background text-foreground;
|
2026-08-10 08:53:18 +00:00
|
|
|
font-family: var(--font-sans);
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
text-rendering: optimizeLegibility;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-09-09 00:38:53 +00:00
|
|
|
/* Reduced motion */
|
2026-08-10 08:53:18 +00:00
|
|
|
.reduce-motion *,
|
|
|
|
|
.reduce-motion *::before,
|
|
|
|
|
.reduce-motion *::after {
|
|
|
|
|
animation-duration: 0.001s !important;
|
|
|
|
|
transition-duration: 0.001s !important;
|
|
|
|
|
animation-iteration-count: 1 !important;
|
|
|
|
|
}
|