clone_canva/src/app/globals.css
2024-10-23 01:07:57 +09:00

30 lines
406 B
CSS

@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;
}