dark theme implemented

This commit is contained in:
2024-01-20 00:39:53 +01:00
parent e2a7de3e90
commit 7a7b19c02b
23 changed files with 848 additions and 118 deletions

View File

@@ -10,6 +10,11 @@ form{
padding-block: 2rem;
margin-block: 2rem;
}
@media (prefers-color-scheme: dark){
form{
background-color: var(--accent-dark);
}
}
form label{
font-size: 1.2em;
}

View File

@@ -22,4 +22,8 @@
--yellow: var(--nord13);
--green: var(--nord14);
--purple: var(--nord15);
--nord6-dark: #292c31;
--accent-dark: #1f1f21;
--background-dark: #21201b;
--font-default-dark: #ffffff;
}