mirror of
https://github.com/johndoe6345789/snippet-pastebin.git
synced 2026-04-26 14:34:55 +00:00
76 lines
2.1 KiB
CSS
76 lines
2.1 KiB
CSS
@import 'tailwindcss';
|
|
@import "tw-animate-css";
|
|
|
|
@layer base {
|
|
* {
|
|
border-color: var(--border);
|
|
}
|
|
}
|
|
|
|
:root {
|
|
--background: oklch(0.10 0.01 280);
|
|
--foreground: oklch(0.96 0.01 280);
|
|
|
|
--card: oklch(0.18 0.02 280);
|
|
--card-foreground: oklch(0.96 0.01 280);
|
|
--popover: oklch(0.18 0.02 280);
|
|
--popover-foreground: oklch(0.96 0.01 280);
|
|
|
|
--primary: oklch(0.55 0.20 280);
|
|
--primary-foreground: oklch(0.98 0 0);
|
|
--secondary: oklch(0.28 0.04 280);
|
|
--secondary-foreground: oklch(0.96 0.01 280);
|
|
--muted: oklch(0.22 0.02 280);
|
|
--muted-foreground: oklch(0.60 0.03 280);
|
|
--accent: oklch(0.75 0.18 200);
|
|
--accent-foreground: oklch(0.18 0.02 280);
|
|
--destructive: oklch(0.577 0.245 27.325);
|
|
--destructive-foreground: oklch(0.98 0 0);
|
|
--border: oklch(0.28 0.04 280);
|
|
--input: oklch(0.28 0.04 280);
|
|
--ring: oklch(0.75 0.18 200);
|
|
|
|
--radius: 0.5rem;
|
|
}
|
|
|
|
@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: 'Inter', sans-serif;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
code, pre {
|
|
font-family: 'JetBrains Mono', monospace;
|
|
}
|