-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.ts
57 lines (57 loc) · 1.32 KB
/
tailwind.config.ts
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
export default {
darkMode: 'class',
content: [
'./components/**/*.{js,vue,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./app.vue',
'./error.vue',
],
theme: {
extend: {
colors: {
orange: {
50: '#fff7ed',
100: '#ffedd5',
200: '#fed7aa',
300: '#fdba74',
400: '#fb923c',
500: '#f97316',
600: '#ea580c',
700: '#c2410c',
800: '#9a3412',
900: '#7c2d12',
},
},
fontFamily: {
heading: ['Playfair Display', 'serif'],
sans: ['Inter', 'sans-serif'],
},
typography: {
DEFAULT: {
css: {
maxWidth: '65ch',
color: 'rgb(55 65 81)',
'[class~="dark"] &': {
color: 'rgb(209 213 219)',
},
h1: {
fontFamily: 'Playfair Display, serif',
},
h2: {
fontFamily: 'Playfair Display, serif',
},
h3: {
fontFamily: 'Playfair Display, serif',
},
h4: {
fontFamily: 'Playfair Display, serif',
},
},
},
},
},
},
plugins: [require('@tailwindcss/typography'), require('@tailwindcss/forms')],
};