feat: update styling

This commit is contained in:
2026-02-08 15:41:11 -06:00
parent 2c66f054ac
commit 337f94de8b
10 changed files with 50 additions and 19 deletions

View File

@@ -1,7 +1,9 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}', '*.{js,ts,jsx,tsx,mdx}'],
darkMode: 'class',
theme: {},
darkMode: ['class', '[data-theme="dark"]'],
theme: {
extend: {},
},
plugins: [require('@tailwindcss/typography')],
};