Update theme setup
This commit is contained in:
parent
5446b8e37c
commit
ca010938db
13
src/lib/ThemeContext.svelte
Normal file
13
src/lib/ThemeContext.svelte
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<svelte:head>
|
||||||
|
<script>
|
||||||
|
if (document) {
|
||||||
|
const defaultTheme = 'dark';
|
||||||
|
const itemTheme = localStorage.getItem("theme") ?? defaultTheme;
|
||||||
|
|
||||||
|
localStorage.setItem("theme", itemTheme);
|
||||||
|
document.documentElement.setAttribute("data-theme", itemTheme);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</svelte:head>
|
||||||
|
|
||||||
|
<slot></slot>
|
@ -1,27 +1,10 @@
|
|||||||
<script>
|
<script>
|
||||||
import Nav from '$lib/Nav.svelte';
|
import ThemeContext from "$lib/ThemeContext.svelte";
|
||||||
import Modal from '$lib/Modal.svelte'
|
import Nav from "$lib/Nav.svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<ThemeContext>
|
||||||
:global(html[data-theme='dark']) {
|
<Nav />
|
||||||
--background-color: #222222;
|
<slot></slot>
|
||||||
--headings-color: #ffffff;
|
<footer class="container"></footer>
|
||||||
--font-color: #ffffff;
|
</ThemeContext>
|
||||||
}
|
|
||||||
|
|
||||||
:global(body) {
|
|
||||||
font-family: 'Open Sans', sans-serif;
|
|
||||||
font-size: 1rem;
|
|
||||||
background-color: var(--background-color);
|
|
||||||
color: var(--font-color);
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<Modal/>
|
|
||||||
<Nav/>
|
|
||||||
|
|
||||||
<slot></slot>
|
|
||||||
|
|
||||||
<footer class="container"></footer>
|
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
<script>
|
<script>
|
||||||
import {onMount} from 'svelte';
|
import Thumb from "$lib/Thumbnail.svelte";
|
||||||
import Thumb from '$lib/Thumbnail.svelte'
|
import Banner from "$lib/Banner.svelte";
|
||||||
import Banner from '$lib/Banner.svelte'
|
|
||||||
|
|
||||||
let games = [
|
let games = [
|
||||||
{
|
{
|
||||||
@ -9,22 +8,33 @@
|
|||||||
link: "./sirius",
|
link: "./sirius",
|
||||||
img: "img/600x300.png",
|
img: "img/600x300.png",
|
||||||
size: { width: 600, height: 300 },
|
size: { width: 600, height: 300 },
|
||||||
description: "A 2D game about a wannabe space captain exploring the galaxy.",
|
description:
|
||||||
|
"A 2D game about a wannabe space captain exploring the galaxy.",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Quartz",
|
name: "Quartz",
|
||||||
link: "./sirius",
|
link: "./sirius",
|
||||||
img: "img/600x300.png",
|
img: "img/600x300.png",
|
||||||
size: { width: 600, height: 300 },
|
size: { width: 600, height: 300 },
|
||||||
description: "Test"
|
description: "Test",
|
||||||
}
|
},
|
||||||
]
|
];
|
||||||
|
|
||||||
onMount(async () => {
|
|
||||||
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<svelte:head>
|
||||||
|
<title>Quartznet</title>
|
||||||
|
</svelte:head>
|
||||||
|
|
||||||
|
<Banner />
|
||||||
|
|
||||||
|
<main class="container">
|
||||||
|
<section>
|
||||||
|
{#each games as game}
|
||||||
|
<Thumb {...game} />
|
||||||
|
{/each}
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
section {
|
section {
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
@ -35,17 +45,3 @@
|
|||||||
margin-top: 30px;
|
margin-top: 30px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<svelte:head>
|
|
||||||
<title>Quartznet</title>
|
|
||||||
</svelte:head>
|
|
||||||
|
|
||||||
<Banner/>
|
|
||||||
|
|
||||||
<main class="container">
|
|
||||||
<section>
|
|
||||||
{#each games as game}
|
|
||||||
<Thumb {...game}/>
|
|
||||||
{/each}
|
|
||||||
</section>
|
|
||||||
</main>
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
|
|
||||||
/* Dark theme */
|
html[data-theme='dark'] {
|
||||||
:root {
|
|
||||||
--background-color: #343a40;
|
--background-color: #343a40;
|
||||||
--header-color: #202225;
|
--header-color: #202225;
|
||||||
--headings-color: #ffffff;
|
--headings-color: #ffffff;
|
||||||
@ -11,7 +10,6 @@
|
|||||||
--link-color-hover: #ffffff;
|
--link-color-hover: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Light theme */
|
|
||||||
html[data-theme='light'] {
|
html[data-theme='light'] {
|
||||||
--background-color: #ffffff;
|
--background-color: #ffffff;
|
||||||
--headings-color: #181818;
|
--headings-color: #181818;
|
||||||
@ -25,6 +23,7 @@ html[data-theme='light'] {
|
|||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: var(--background-color);
|
background-color: var(--background-color);
|
||||||
|
box-sizing: border-box;
|
||||||
color: var(--font-color);
|
color: var(--font-color);
|
||||||
font-family: 'Open Sans', sans-serif;
|
font-family: 'Open Sans', sans-serif;
|
||||||
font-display: swap;
|
font-display: swap;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user