-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
48 lines (48 loc) · 1.25 KB
/
tailwind.config.js
File metadata and controls
48 lines (48 loc) · 1.25 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
mono: ['JetBrains Mono', 'Monaco', 'monospace'],
},
colors: {
// Using CSS custom properties for theming
'bg': 'var(--color-bg)',
'surface': 'var(--color-surface)',
'primary': 'var(--color-primary)',
'accent': 'var(--color-accent)',
'secondary': 'var(--color-secondary)',
'text': 'var(--color-text)',
'text-secondary': 'var(--color-text-secondary)',
'border': 'var(--color-border)',
},
spacing: {
'18': '4.5rem',
'88': '22rem',
},
animation: {
'fade-in-up': 'fadeInUp 0.6s ease-out',
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
backdropBlur: {
'xs': '2px',
'soft': '8px',
},
typography: {
DEFAULT: {
css: {
maxWidth: 'none',
color: 'var(--color-text)',
lineHeight: '1.6',
},
},
},
},
},
plugins: [
// Add any additional plugins here
],
};