17 lines
365 B
CSS
17 lines
365 B
CSS
@import "tailwindcss";
|
|
|
|
/* This is the Tailwind v4 way to define your theme colors */
|
|
@theme {
|
|
--color-zinc-950: #09090b;
|
|
--color-zinc-900: #18181b;
|
|
--color-zinc-800: #27272a;
|
|
}
|
|
|
|
:root {
|
|
background-color: var(--color-zinc-950);
|
|
color: #f4f4f5; /* zinc-100 */
|
|
}
|
|
|
|
/* Ensure the typography plugin is loaded for markdown */
|
|
@plugin "@tailwindcss/typography";
|