samantha's personal website!~ ✨ samanthanguyen.me
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

make text less straining on dark mode

+5 -5
+1 -1
src/app.html
··· 8 8 <meta name="theme-color" content="#070707" media="(prefers-color-scheme: dark)"> 9 9 %sveltekit.head% 10 10 </head> 11 - <body data-sveltekit-preload-data="hover" class="bg-[#EDE3E9] dark:bg-[#070707] text-[#110b11] dark:text-gray-50"> 11 + <body data-sveltekit-preload-data="hover" class="bg-[#EDE3E9] dark:bg-neutral-950 text-[#110b11] dark:text-neutral-300"> 12 12 <div style="display: contents">%sveltekit.body%</div> 13 13 </body> 14 14 </html>
+3 -3
src/lib/Footer.svelte
··· 12 12 <IconMailFilled 13 13 size={32} 14 14 stroke={1} 15 - class={twJoin("fill-[#CFB4C5] dark:fill-gray-50")} /> 15 + class={twJoin("fill-[#CFB4C5] dark:fill-neutral-300")} /> 16 16 </a> 17 17 <a href="https://bsky.app/profile/samanthanguyen.me" title="@samanthanguyen.me on Bluesky"> 18 18 <IconBrandBluesky 19 19 size={32} 20 20 stroke={1} 21 - class={twJoin("text-[#CFB4C5] fill-[#CFB4C5]", "dark:text-gray-50 dark:fill-gray-50")} /> 21 + class={twJoin("text-[#CFB4C5] fill-[#CFB4C5]", "dark:text-neutral-300 dark:fill-neutral-300")} /> 22 22 </a> 23 23 <a href="https://github.com/neoncitylights" title="@neoncitylights on GitHub"> 24 24 <IconBrandGithubFilled 25 25 size={32} 26 26 stroke={1} 27 - class={twJoin("fill-[#CFB4C5]", "dark:fill-gray-50")} /> 27 + class={twJoin("fill-[#CFB4C5]", "dark:fill-neutral-300")} /> 28 28 </a> 29 29 </span> 30 30 </footer>
+1 -1
src/routes/+layout.svelte
··· 18 18 <section class={twJoin( 19 19 "flex flex-col gap-6 lg:gap-8", 20 20 "selection:bg-pink-200 selection:text-pink-700", 21 - "dark:selection:bg-yellow-400 selection:text-zinc-950" 21 + "dark:selection:bg-white dark:selection:text-zinc-950" 22 22 )}> 23 23 {@render children()} 24 24 </section>