updated theme e861f968
Steve · 2024-09-01 19:22 4 file(s) · +21 −21
astro.config.ts +2 −2
11 11
// https://astro.build/config
12 12
export default defineConfig({
13 13
	site: "https://stevedylan.dev",
14 -
  outDir: 'dist',
14 +
	outDir: "dist",
15 15
	markdown: {
16 16
		shikiConfig: {
17 -
			theme: "vitesse-dark",
17 +
			theme: "css-variables",
18 18
			wrap: true,
19 19
		},
20 20
	},
src/pages/about.astro +1 −1
37 37
				target="_blank"
38 38
				rel="noopener noreferrer"
39 39
				aria-label="Link to repos"
40 -
				href="https://api.github.com/users/stevedylandev/repos?type=member&sort=created&per_page=100"
40 +
				href="/projects"
41 41
				>developer tools</a
42 42
			>, to writing
43 43
			<a
src/pages/index.astro +4 −4
46 46
				target="_blank"
47 47
				rel="noopener noreferrer"
48 48
				class="cactus-link inline-block"
49 -
				>🍇 Steve's Pi
49 +
				><img src="https://api.iconify.design/cib:raspberry-pi.svg?color=%23888888" class="w-4 h-4 inline-block" alt="rasp pi logo"/> Steve's Pi
50 50
			</a>:
51 51
			<p class="inline-block sm:mt-2">See a live view of the Raspberry Pi on my desk</p>
52 52
		</li>
56 56
					target="_blank"
57 57
					rel="noopener noreferrer"
58 58
					class="cactus-link inline-block"
59 -
					>🥇 Cosmic Cowboys
59 +
					><img src="https://api.iconify.design/ph:cowboy-hat-fill.svg?color=%23888888" class="w-4 h-4 inline-block" alt="cowboy logo"/> Cosmic Cowboys
60 60
				</a>:
61 61
				<p class="inline-block sm:mt-2">EthGlobal 2023 hackathon winning project</p>
62 62
			</li>
66 66
					target="_blank"
67 67
					rel="noopener noreferrer"
68 68
					class="cactus-link inline-block"
69 -
					>📷 Photos
69 +
					><img src="https://api.iconify.design/material-symbols:photo-camera.svg?color=%23888888" class="h-4 w-4 inline-block" alt="camera icon" /> Photos
70 70
				</a>:
71 71
				<p class="inline-block sm:mt-2">My personal photography portfolio</p>
72 72
			</li>
76 76
					target="_blank"
77 77
					rel="noopener noreferrer"
78 78
					class="cactus-link inline-block"
79 -
					>🎉 Pinata
79 +
					><img src="https://dweb.mypinata.cloud/ipfs/QmXexbA6Raw4sq79NfXNrLesXNwXYpHUVNRSccF59ArGfo" class="w-4 h-4 inline-block" alt="pinata logo" /> Pinata
80 80
				</a>:
81 81
				<p class="inline-block sm:mt-2">
82 82
					Where I'm currently working as Head of Developer Relations
src/styles/global.css +14 −14
16 16
@layer base {
17 17
	:root {
18 18
		color-scheme: light;
19 -
		--theme-bg: #121212;
20 -
		--theme-link: #E78A52;
21 -
		--theme-text: #C1C1C1;
22 -
		--theme-accent: #FBCB96;
23 -
		--theme-accent-2: #C1C1C1;
24 -
		--theme-quote: #FBCB96;
25 -
		--theme-menu-bg: rgb(40, 40, 40 / 0.85);
19 +
		--theme-bg: #000000;
20 +
		--theme-link: #FFFFFF;
21 +
		--theme-text: #FFFFFF;
22 +
		--theme-accent: #FFFFFF;
23 +
		--theme-accent-2: #FFFFFF;
24 +
		--theme-quote: #FFFFFF;
25 +
		--theme-menu-bg: rgb(0, 0, 0 / 0.85);
26 26
	}
27 27
28 28
	:root.dark {
29 29
		color-scheme: dark;
30 -
		--theme-bg: #121212;
31 -
		--theme-link: #E78A52;
32 -
		--theme-text: #C1C1C1;
33 -
		--theme-accent: #FBCB96;
34 -
		--theme-accent-2: #C1C1C1;
35 -
		--theme-quote: #FBCB96;
36 -
		--theme-menu-bg: rgb(40, 40, 40 / 0.85);
30 +
		--theme-bg: #000000;
31 +
		--theme-link: #FFFFFF;
32 +
		--theme-text: #FFFFFF;
33 +
		--theme-accent: #FFFFFF;
34 +
		--theme-accent-2: #FFFFFF;
35 +
		--theme-quote: #FFFFFF;
36 +
		--theme-menu-bg: rgb(0, 0, 0 / 0.85);
37 37
	}
38 38
39 39
	html {