Files
snippet-pastebin/app/globals.css
2026-01-19 12:57:36 +00:00

93 lines
2.6 KiB
CSS

@import 'tailwindcss';
@import "tw-animate-css";
@import '../src/styles/theme.css';
/*
The default border color has changed to `currentColor` in Tailwind CSS v4,
so we've added these compatibility styles to make sure everything still
looks the same as it did with Tailwind CSS v3.
*/
@layer base {
*,
::after,
::before,
::backdrop,
::file-selector-button {
border-color: var(--color-gray-200, currentColor);
}
* {
@apply border-border
}
}
:root {
--radius: 0.5rem;
--background: oklch(0.08 0.01 265);
--foreground: oklch(0.95 0.01 265);
--card: oklch(0.15 0.01 265);
--card-foreground: oklch(0.98 0 0);
--popover: oklch(0.15 0.01 265);
--popover-foreground: oklch(0.98 0 0);
--primary: oklch(0.35 0.15 265);
--primary-foreground: oklch(0.98 0 0);
--secondary: oklch(0.25 0.01 265);
--secondary-foreground: oklch(0.95 0.01 265);
--muted: oklch(0.20 0.01 265);
--muted-foreground: oklch(0.65 0.01 265);
--accent: oklch(0.75 0.15 195);
--accent-foreground: oklch(0.15 0.01 265);
--destructive: oklch(0.577 0.245 27.325);
--destructive-foreground: oklch(0.98 0 0);
--border: oklch(0.25 0.01 265);
--input: oklch(0.28 0.02 265);
--ring: oklch(0.75 0.15 195);
--chart-1: oklch(0.70 0.20 10);
--chart-2: oklch(0.70 0.20 160);
--chart-3: oklch(0.70 0.20 200);
--chart-4: oklch(0.70 0.20 240);
--chart-5: oklch(0.70 0.20 280);
}
@theme {
--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) * 0.5);
--radius-md: var(--radius);
--radius-lg: calc(var(--radius) * 1.5);
--radius-xl: calc(var(--radius) * 2);
--radius-2xl: calc(var(--radius) * 3);
--radius-full: 9999px;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-inter), sans-serif;
}
body {
font-family: var(--font-inter), sans-serif;
}
code, pre {
font-family: var(--font-jetbrains-mono), monospace;
}