mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
329 B
CSS
21 lines
329 B
CSS
@import "tailwindcss";
|
|
@import "tw-animate-css";
|
|
@import "./themes/default.css";
|
|
|
|
@custom-variant dark (&: is(.dark *));
|
|
|
|
@theme {
|
|
--default-transition-duration: 150ms;
|
|
}
|
|
|
|
@variant dark (&:is(.dark *));
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border outline-ring/50;
|
|
}
|
|
body {
|
|
@apply bg-background text-foreground;
|
|
}
|
|
}
|