FBLA25/src/app.css
drake d32a6b412e
Some checks failed
ci / docker_image (push) Failing after 1m4s
ci / deploy (push) Has been skipped
app dev and CI
2024-12-17 19:26:53 -06:00

30 lines
393 B
CSS

@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';
:root {
--text-color: #000000;
--bg-color: #f4f4f4;
}
[data-theme='dark'] {
--text-color: #f4f4f4;
--bg-color: #010101;
}
body {
background: var(--bg-color);
color: var(--text-color);
}
h1 {
color: var(--text-color);
@apply text-4xl
}
a {
@apply text-blue-500
}