remove light mode

This commit is contained in:
Gabriel 2025-04-22 13:00:44 -04:00
parent 04c7ffb912
commit 9d559da53b

View file

@ -1,17 +1,14 @@
html{
--color-primary: white;
--color-secondary: black;
--color-accent:#09448c;
--accent-alternate:#ffd336;
--font-family:sans-serif;
--font-size:16px;
--font-alternate:code;
}
body {
--color-primary: rgb(255, 255, 255);
--color-secondary: black;
--color-accent: #09448c;
--color-primary: rgb(0, 0, 0);
--color-secondary: white;
--color-accent: #1291e5;
--accent-alternate:#51320d;
color: var(--color-secondary);
background-color: var(--color-primary);
margin: 0;
@ -23,14 +20,6 @@ body {
align-items: center;
}
@media screen and (prefers-color-scheme:dark) {
body {
--color-primary: rgb(0, 0, 0);
--color-secondary: white;
--color-accent: #1291e5;
--accent-alternate:#51320d;
}
}
header,
footer {