-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
47 lines (45 loc) · 1.02 KB
/
tailwind.config.ts
File metadata and controls
47 lines (45 loc) · 1.02 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
import type { Config } from 'tailwindcss'
const config: Config = {
darkMode: 'class',
content: [
'./app/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
],
theme: {
extend: {
fontFamily: {
sans: ['"Source Sans 3"', 'Inter', 'system-ui', 'sans-serif'],
},
colors: {
accent: {
50: '#fdf4ef',
100: '#fbe6d8',
200: '#f6c9b0',
300: '#f0a67e',
400: '#e8834f',
500: '#d97757',
600: '#c4613d',
700: '#a34d33',
800: '#84402e',
900: '#6b3628',
},
surface: {
0: 'var(--surface-0)',
1: 'var(--surface-1)',
2: 'var(--surface-2)',
},
border: {
DEFAULT: 'var(--border)',
light: 'var(--border-light)',
},
text: {
primary: 'var(--text-primary)',
secondary: 'var(--text-secondary)',
muted: 'var(--text-muted)',
},
},
},
},
plugins: [],
}
export default config