104 lines
3.1 KiB
CSS
104 lines
3.1 KiB
CSS
@import 'tailwindcss';
|
|
@import 'tw-animate-css';
|
|
|
|
@custom-variant dark (&:is(.dark *));
|
|
|
|
:root {
|
|
/* Gemini Dark Theme — always dark */
|
|
--background: #131314;
|
|
--foreground: #e3e3e3;
|
|
--card: #1e1e1e;
|
|
--card-foreground: #e3e3e3;
|
|
--popover: #2a2a2a;
|
|
--popover-foreground: #e3e3e3;
|
|
--primary: #4285f4;
|
|
--primary-foreground: #ffffff;
|
|
--secondary: #2a2a2a;
|
|
--secondary-foreground: #e3e3e3;
|
|
--muted: #2a2a2a;
|
|
--muted-foreground: #9aa0a6;
|
|
--accent: #2a2a2a;
|
|
--accent-foreground: #e3e3e3;
|
|
--destructive: oklch(0.577 0.245 27.325);
|
|
--destructive-foreground: oklch(0.985 0 0);
|
|
--border: #3a3a3a;
|
|
--input: #1e1e1e;
|
|
--ring: #4285f4;
|
|
--radius: 0.75rem;
|
|
--sidebar: #1e1e1e;
|
|
--sidebar-foreground: #e3e3e3;
|
|
--sidebar-primary: #4285f4;
|
|
--sidebar-primary-foreground: #ffffff;
|
|
--sidebar-accent: #2a2a2a;
|
|
--sidebar-accent-foreground: #e3e3e3;
|
|
--sidebar-border: #3a3a3a;
|
|
--sidebar-ring: #4285f4;
|
|
/* Gemini brand gradient stops */
|
|
--gem-blue: #4285f4;
|
|
--gem-purple: #a855f7;
|
|
}
|
|
|
|
@theme inline {
|
|
--font-sans: 'Google Sans', 'Roboto', 'Geist', sans-serif;
|
|
--font-mono: 'Geist Mono', 'Roboto Mono', monospace;
|
|
--color-background: var(--background);
|
|
--color-foreground: var(--foreground);
|
|
--color-card: var(--card);
|
|
--color-card-foreground: var(--card-foreground);
|
|
--color-popover: var(--popover);
|
|
--color-popover-foreground: var(--popover-foreground);
|
|
--color-primary: var(--primary);
|
|
--color-primary-foreground: var(--primary-foreground);
|
|
--color-secondary: var(--secondary);
|
|
--color-secondary-foreground: var(--secondary-foreground);
|
|
--color-muted: var(--muted);
|
|
--color-muted-foreground: var(--muted-foreground);
|
|
--color-accent: var(--accent);
|
|
--color-accent-foreground: var(--accent-foreground);
|
|
--color-destructive: var(--destructive);
|
|
--color-destructive-foreground: var(--destructive-foreground);
|
|
--color-border: var(--border);
|
|
--color-input: var(--input);
|
|
--color-ring: var(--ring);
|
|
--radius-sm: calc(var(--radius) - 4px);
|
|
--radius-md: calc(var(--radius) - 2px);
|
|
--radius-lg: var(--radius);
|
|
--radius-xl: calc(var(--radius) + 4px);
|
|
--color-sidebar: var(--sidebar);
|
|
--color-sidebar-foreground: var(--sidebar-foreground);
|
|
--color-sidebar-primary: var(--sidebar-primary);
|
|
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
|
|
--color-sidebar-accent: var(--sidebar-accent);
|
|
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
|
|
--color-sidebar-border: var(--sidebar-border);
|
|
--color-sidebar-ring: var(--sidebar-ring);
|
|
--color-gem-blue: var(--gem-blue);
|
|
--color-gem-purple: var(--gem-purple);
|
|
}
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border outline-ring/50;
|
|
scrollbar-width: thin;
|
|
scrollbar-color: #3a3a3a transparent;
|
|
}
|
|
body {
|
|
@apply bg-background text-foreground;
|
|
overflow: hidden;
|
|
}
|
|
::-webkit-scrollbar {
|
|
width: 6px;
|
|
height: 6px;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background: #3a3a3a;
|
|
border-radius: 3px;
|
|
}
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #4a4a4a;
|
|
}
|
|
}
|