www/app/globals.css
Xe Iaso 5e69e68199
let there be dark
Signed-off-by: Xe Iaso <me@xeiaso.net>
2024-09-20 16:10:09 -04:00

43 lines
579 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
html {
font-family: var(--font-inter);
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--font-podkova);
}
:root {
--foreground-rgb: 0, 0, 0;
--background-start-rgb: 214, 219, 220;
--background-end-rgb: 255, 255, 255;
}
body {
color: rgb(var(--foreground-rgb));
background: linear-gradient(
to bottom,
transparent,
rgb(var(--background-end-rgb))
)
rgb(var(--background-start-rgb));
}
@layer utilities {
.text-balance {
text-wrap: balance;
}
}
.prose p {
@apply my-2;
}