mirror of
https://git.solarpunk.moe/Fries/fries-website.git
synced 2024-11-13 00:02:19 +00:00
change the theme to a basic but working theme.
This commit is contained in:
parent
9501067414
commit
a68fcbaac9
2 changed files with 8 additions and 7 deletions
2
.vscode/settings.json
vendored
2
.vscode/settings.json
vendored
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"eslint.packageManager": "pnpm",
|
||||
"editor.insertSpaces": false,
|
||||
"editor.detectIndentation": false
|
||||
"editor.detectIndentation": false,
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue