21 lines
348 B
CSS
21 lines
348 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
* {
|
|
@apply border-slate-200;
|
|
}
|
|
|
|
html {
|
|
color-scheme: light dark;
|
|
}
|
|
|
|
body {
|
|
@apply bg-slate-50 dark:bg-slate-900 text-slate-900 dark:text-slate-50;
|
|
}
|
|
|
|
@layer components {
|
|
.card {
|
|
@apply bg-white dark:bg-slate-800 rounded-lg border border-slate-200 dark:border-slate-700;
|
|
}
|
|
}
|