-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
69 lines (69 loc) · 1.68 KB
/
tailwind.config.js
File metadata and controls
69 lines (69 loc) · 1.68 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./index.tsx",
"./components/**/*.{js,ts,jsx,tsx}",
"./services/**/*.{js,ts,jsx,tsx}",
"./context/**/*.{js,ts,jsx,tsx}",
"./hooks/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
tennis: {
green: '#d4e157', // Tennis ball green
dark: '#1a2c2c', // Deep green/black background
court: '#3e885b', // Court green
clay: '#d66d4f', // Clay court orange
}
},
typography: {
DEFAULT: {
css: {
color: '#c7d2fe',
maxWidth: 'none',
p: {
marginBottom: '0.75rem',
lineHeight: '1.6',
},
ul: {
paddingLeft: '1.25rem',
marginBottom: '0.75rem',
},
li: {
marginBottom: '0.375rem',
lineHeight: '1.5',
},
hr: {
borderColor: 'rgba(99, 102, 241, 0.2)',
marginTop: '1rem',
marginBottom: '1rem',
},
h3: {
fontSize: '0.875rem',
fontWeight: '600',
color: '#a5b4fc',
marginBottom: '0.5rem',
},
small: {
color: '#94a3b8',
fontSize: '0.75rem',
},
sup: {
fontSize: '0.7em',
color: '#818cf8',
},
strong: {
fontWeight: '600',
color: '#c7d2fe',
},
},
},
},
}
},
plugins: [
require('@tailwindcss/typography'),
],
}