clone_canva/src/app/globals.css

30 lines
406 B
CSS
Raw Normal View History

2024-10-22 16:07:57 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
html,body{
height: 100%;
margin: 0;
padding: 0;
}
:root {
--background: #ffffff;
--foreground: #171717;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
body {
color: var(--foreground);
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
}