Files
dotme/src/css/App.css

14 lines
242 B
CSS

body {
font-family: 'Poppins', sans-serif;
min-height: 100vh;
}
body.light {
background: white;
color: black;
}
body.dark {
background: linear-gradient(135deg, var(--gradient-primary), var(--gradient-secondary));
color: white;
}