mirror of
https://github.com/johndoe6345789/snippet-pastebin.git
synced 2026-05-02 17:34:53 +00:00
ea79d908bb
Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
50 lines
1.1 KiB
CSS
50 lines
1.1 KiB
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
:root {
|
|
--background: 222.2 84% 4.9%;
|
|
--foreground: 210 40% 98%;
|
|
--card: 222.2 84% 4.9%;
|
|
--card-foreground: 210 40% 98%;
|
|
--popover: 222.2 84% 4.9%;
|
|
--popover-foreground: 210 40% 98%;
|
|
--primary: 263 70% 50%;
|
|
--primary-foreground: 210 40% 98%;
|
|
--secondary: 217.2 32.6% 17.5%;
|
|
--secondary-foreground: 210 40% 98%;
|
|
--muted: 217.2 32.6% 17.5%;
|
|
--muted-foreground: 215 20.2% 65.1%;
|
|
--accent: 195 100% 70%;
|
|
--accent-foreground: 222.2 84% 4.9%;
|
|
--destructive: 0 62.8% 30.6%;
|
|
--destructive-foreground: 210 40% 98%;
|
|
--border: 217.2 32.6% 17.5%;
|
|
--input: 217.2 32.6% 17.5%;
|
|
--ring: 195 100% 70%;
|
|
--radius: 0.5rem;
|
|
}
|
|
}
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border;
|
|
}
|
|
body {
|
|
@apply bg-background text-foreground;
|
|
}
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: var(--font-inter), 'Inter', sans-serif;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--font-inter), 'Inter', sans-serif;
|
|
}
|
|
|
|
code, pre {
|
|
font-family: var(--font-jetbrains-mono), 'JetBrains Mono', monospace;
|
|
}
|