Update theme usage

This commit is contained in:
Chris Dill 2024-06-01 09:31:16 +01:00
parent d9d95402c3
commit 326cc144ab
4 changed files with 7 additions and 21 deletions

View File

@ -2,10 +2,7 @@
<script> <script>
if (document) { if (document) {
const defaultTheme = "dark"; const defaultTheme = "dark";
const itemTheme = localStorage.getItem("theme") ?? defaultTheme; document.documentElement.setAttribute("data-theme", defaultTheme);
localStorage.setItem("theme", itemTheme);
document.documentElement.setAttribute("data-theme", itemTheme);
} }
</script> </script>
</svelte:head> </svelte:head>

View File

@ -291,7 +291,6 @@ Still alive.</p>
<style> <style>
* { * {
color: white !important;
font-family: monospace; font-family: monospace;
white-space: pre; white-space: pre;
} }

View File

@ -54,7 +54,7 @@
} }
li a:hover { li a:hover {
border-bottom: 2px solid white; border-bottom: 2px solid var(--link-color-hover);
} }
h2 { h2 {

View File

@ -1,31 +1,21 @@
html[data-theme='dark'] { html[data-theme='dark'] {
--font1: 'Open Sans', sans-serif;
--background-color: #343a40; --background-color: #343a40;
--header-color: #202225; --header-color: #202225;
--headings-color: #ffffff; --headings-color: #ffffff;
--font-color: #eeeeee; --text-color: #eeeeee;
--border-color: #141414; --border-color: #141414;
--line-color: #ffffff; --line-color: #ffffff;
--link-color: #CC99FF; --link-color: #CC99FF;
--link-color-hover: #ffffff; --link-color-hover: #ffffff;
} }
html[data-theme='light'] {
--background-color: #ffffff;
--headings-color: #181818;
--font-color: #181818;
--line-color: #181818;
--nav-link-color: #2599fd;
--nav-link-color-hover: #000000;
--link-color: #CC99FF;
--link-color-hover: #000000;
}
body { body {
background-color: var(--background-color); background-color: var(--background-color);
box-sizing: border-box; box-sizing: border-box;
color: var(--font-color); color: var(--text-color);
font-family: 'Open Sans', sans-serif; font-family: var(--font1);
font-display: swap; font-display: swap;
font-size: 1rem; font-size: 1rem;
line-height: 1.6; line-height: 1.6;
@ -139,7 +129,7 @@ footer {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
border-top: 3px solid var(--border-color); border-top: 3px solid var(--border-color);
color: var(--font-color); color: var(--text-color);
font-family: var(--font1); font-family: var(--font1);
margin-top: 30px; margin-top: 30px;
margin-bottom: 30px; margin-bottom: 30px;