chore: initial theme update 7c1f47f3
Steve · 2025-10-16 13:15 2 file(s) · +5 −5
src/layouts/Base.astro +1 −1
19 19
<html lang={siteConfig.lang}>
20 20
	<head>
21 21
    <meta name="apple-mobile-web-app-capable" content="yes">
22 -
    <meta name="theme-color" content="#000000" />
22 +
    <meta name="theme-color" content="#121113" />
23 23
    <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
24 24
		<!-- Google tag (gtag.js) -->
25 25
		<BaseHead title={title} description={description} ogImage={ogImage} articleDate={articleDate} />
src/styles/global.css +4 −4
16 16
@layer base {
17 17
	:root {
18 18
		color-scheme: light;
19 -
		--theme-bg: #000000;
19 +
		--theme-bg: #121113;
20 20
		--theme-link: #ffffff;
21 21
		--theme-text: #ffffff;
22 22
		--theme-accent: #ffffff;
27 27
28 28
	:root.dark {
29 29
		color-scheme: dark;
30 -
		--theme-bg: #000000;
30 +
		--theme-bg: #121113;
31 31
		--theme-link: #ffffff;
32 32
		--theme-text: #ffffff;
33 33
		--theme-accent: #ffffff;
37 37
	}
38 38
39 39
	html {
40 -
		@apply h-full scroll-smooth border-t-2 border-textColor bg-black;
40 +
		@apply h-full scroll-smooth border-t-2 border-textColor bg-[#121113];
41 41
	}
42 42
43 43
	html body {
44 -
		@apply mx-auto flex h-full max-w-3xl flex-col bg-black px-8 pt-16 font-sans text-sm font-normal text-textColor antialiased;
44 +
		@apply mx-auto flex h-full max-w-3xl flex-col bg-[#121113] px-8 pt-16 font-sans text-sm font-normal text-textColor antialiased;
45 45
	}
46 46
}
47 47
@tailwind components;