Skip to content

Commit 2947e0a

Browse files
committed
merged dev on main so github pages can be used
1 parent 5d6caec commit 2947e0a

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

tailwind.config.ts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import type { Config } from 'tailwindcss';
2+
3+
export default {
4+
content: [
5+
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
6+
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
7+
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
8+
],
9+
theme: {
10+
extend: {
11+
colors: {
12+
background: 'var(--background)',
13+
foreground: 'var(--foreground)',
14+
},
15+
},
16+
},
17+
darkMode: 'class', // Switch between 'class' or 'media'
18+
plugins: [],
19+
} satisfies Config;

0 commit comments

Comments
 (0)