-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtailwind.config.js
More file actions
30 lines (30 loc) · 1.23 KB
/
tailwind.config.js
File metadata and controls
30 lines (30 loc) · 1.23 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
accent: {
primary: 'var(--accent-primary)',
secondary: 'var(--accent-secondary)',
light: 'var(--accent-light)',
},
},
fontFamily: {
// Primary app font - uses CSS variable for dynamic switching
sans: ['var(--app-font)', 'Outfit', 'Segoe UI', '-apple-system', 'BlinkMacSystemFont', 'sans-serif'],
// Specific font families for direct use
outfit: ['Outfit', 'Segoe UI', '-apple-system', 'BlinkMacSystemFont', 'sans-serif'],
inter: ['Inter', 'Segoe UI', '-apple-system', 'BlinkMacSystemFont', 'sans-serif'],
poppins: ['Poppins', 'Segoe UI', '-apple-system', 'BlinkMacSystemFont', 'sans-serif'],
playfair: ['"Playfair Display"', 'Georgia', '"Times New Roman"', 'serif'],
handwriting: ['"Architects Daughter"', '"Comic Sans MS"', 'cursive'],
},
},
},
plugins: [],
}