-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
32 lines (30 loc) · 829 Bytes
/
Copy pathtailwind.config.ts
File metadata and controls
32 lines (30 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// tailwind.config.ts (in project root, same level as package.json)
import type { Config } from 'tailwindcss'
const config: Config = {
darkMode: 'class',
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
'blog-bg': {
light: '#ffffff',
dark: '#111827',
},
'blog-text': {
light: '#1f2937',
dark: '#e5e7eb',
},
'blog-accent': {
light: '#f3f4f6',
dark: '#1f2937'
},
},
},
},
plugins: [],
}
export default config