Files
monkeygg2.github.io/css/style.css
T
2023-08-03 22:25:49 +05:30

15 lines
210 B
CSS

:root {
--bg: hsl(var(--hue),90%,5%);
--fg: hsl(var(--hue),90%,95%);
}
html {
background: var(--bg);
}
body {
margin: 0;
padding: 0;
box-sizing: border-box;
animation: fadein 1s;
}