Mae's website :3 maemoon.me
personal website svelte sveltekit
0
fork

Configure Feed

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

fix text color for blog posts when using dark mode

acdpsn ee74578c af6c679a

+18 -1
+18 -1
tailwind.config.js
··· 3 3 darkMode: 'selector', 4 4 content: ['./src/**/*.{html,js,svelte,ts}'], 5 5 theme: { 6 - extend: {}, 6 + extend: { 7 + typography: { 8 + DEFAULT: { 9 + css: { 10 + color: 'var(--color-fg-1)', 11 + a: { 12 + color: 'var(--color-fg-2)', 13 + }, 14 + h1: { 15 + color: 'var(--color-fg-1)', 16 + }, 17 + strong: { 18 + color: 'var(--color-fg-1)', 19 + } 20 + } 21 + } 22 + } 23 + }, 7 24 fontFamily: { 8 25 sans: ['Inter', 'sans-serif'] 9 26 },