change the theme to a basic but working theme.

This commit is contained in:
Fries 2023-06-10 21:25:31 -07:00
parent 9501067414
commit a68fcbaac9
2 changed files with 8 additions and 7 deletions

View File

@ -1,5 +1,5 @@
{
"eslint.packageManager": "pnpm",
"editor.insertSpaces": false,
"editor.detectIndentation": false
"editor.detectIndentation": false,
}

View File

@ -1,16 +1,17 @@
@media (prefers-color-scheme: light) {
:root {
--background-color: #eff1f5;
--text-color: #1e1e2e;
--link-color: #1a1adc;
--background-color: white;
--text-color: #black;
--link-color: darkblue;
}
}
@media (prefers-color-scheme: dark) {
:root {
--background-color: #1e1e2e;
--text-color: #cdd6f4;
--link-color: #8cb8ff;
--background-color: black;
--text-color: white;
--link-color: cyan;
}
}