Custom styles
Overview
Styling
Colors
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--background: 0 0% 100%;
--foreground: 222.2 84% 4.9%;
/* other styles */
}
.dark {
--background: 240 10% 3.9%;
--foreground: 210 40% 98%;
/* other styles */
}
}
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
}
}Fonts
Dark Mode
Component based
Other resources
Last updated