27 lines
473 B
CSS

@import "tailwindcss";
@theme {
/* https://tailwindcss.com/docs/theme */
--color-background: #191d21;
--color-reset: #d3d3d3;
--color-muted: #6c757d;
}
@layer base {
body {
background-color: var(--color-background);
color: var(--color-reset);
}
#content {
min-height: 100svh;
margin: 0 auto;
padding: 0 1rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
}
@layer utilities {}