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

View File

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

View File

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

View File

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