-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
52 lines (52 loc) · 1.27 KB
/
Copy pathtailwind.config.js
File metadata and controls
52 lines (52 loc) · 1.27 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
49
50
51
52
/** @type {import('tailwindcss').Config} */
module.exports = {
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: {
background: 'var(--background)',
foreground: 'var(--foreground)',
card: {
bg: 'var(--card-bg)',
border: 'var(--card-border)',
},
primary: {
red: 'var(--primary-red)',
orange: 'var(--primary-orange)',
blue: 'var(--primary-blue)',
},
text: {
primary: 'var(--text-primary)',
secondary: 'var(--text-secondary)',
muted: 'var(--text-muted)',
},
footer: {
bg: 'var(--footer-bg)',
text: 'var(--footer-text)',
},
},
fontFamily: {
sans: ['var(--font-geist-sans)', 'Arial', 'sans-serif'],
mono: ['var(--font-geist-mono)', 'monospace'],
},
animation: {
'pulse': 'pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
keyframes: {
pulse: {
'0%, 100%': {
opacity: '1',
},
'50%': {
opacity: '0.5',
},
},
},
},
},
plugins: [],
}