Files
markone/packages/web/src/index.css

20 lines
341 B
CSS

@import "tailwindcss";
:root {
font-family: monospace;
}
body {
@apply bg-stone-200 dark:bg-stone-900 text-stone-800 dark:text-stone-300;
}
.stripes {
background: repeating-linear-gradient(
-45deg,
var(--color-stone-400),
var(--color-stone-400) 2px,
var(--color-stone-300) 2px,
var(--color-stone-300) 6px
);
}