emojinize / frontend /src /app /globals.css
Luturtun's picture
Dark mode added
8bba9bb
Raw
History Blame Contribute Delete
506 Bytes
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
position: relative;
}
body::before {
content: '';
position: fixed;
inset: 0;
background-image: url('/background.svg');
background-size: 40%;
background-repeat: repeat;
background-position: center;
opacity: 0.10;
z-index: -1;
}
ruby rt {
font-style: normal;
}
}
.dark body {
background-color: #111827;
}
.dark body::before {
filter: invert(1);
opacity: 0.12;
}