This repository was archived by the owner on Dec 17, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathThemeSwitcher.astro
57 lines (52 loc) · 1.47 KB
/
ThemeSwitcher.astro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
import { Picture } from 'astro-imagetools/components';
---
<div class='theme-switcher'>
<strong aria-hidden='true'>Themes:</strong>
<ul class='list' role='none' aria-label='Theme switcher'>
<li>
<div
data-theme-switch='default'
class='button'
role='button'
tabindex={0}
>
👩🚀 Terraformers 👨🚀
</div>
</li>
<li>
<div data-theme-switch='hacker' class='button' role='button' tabindex={0}>
<div class='normal'>
<!-- <Picture src='/graphics/exports/elite-hacker.png' alt='' height={100}
/> -->
<div aria-hidden='true'>
3|_337<br /> <strong>|-|4XØȐ</strong>
</div>
<span class='visually-hidden'>Elite Hacker</span>
</div>
<div class='revealed' aria-hidden='true'>
<!-- <Picture
src='/graphics/exports/elite-hacker-yes.png'
alt=''
height={100}
/> -->
<strong>< ¥€$.</strong>
</div>
</div>
</li>
</ul>
</div>
<script>
const switches = document.querySelectorAll('[data-theme-switch]');
const root = document.documentElement;
switches.forEach((sw) => {
const attr = sw.getAttribute('data-theme-switch');
sw.addEventListener('click', () => {
// console.log(attr);
root.setAttribute('data-theme', attr);
});
});
</script>
<style lang='scss'>
@import './style.scss';
</style>