-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
79 lines (67 loc) · 1.51 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
export default {
content: [
'./components/**/*.{js,vue,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./assets/**/*.{js,ts}',
'./app.vue',
'./error.vue',
],
darkMode: 'selector',
theme: {
colors: {
white: '#fff',
black: '#000',
dark: '#111',
transparent: 'transparent',
current: 'currentColor',
yellow: '#FFD168',
},
fontFamily: {
sans: '"3270", system-ui',
},
extend: {
maxWidth: {
'4xl': '53.75rem',
},
zIndex: {
'-1': '-1',
'top': 999,
},
spacing: {
'4.5': '1.125rem', // 18px
'18': '4.5rem', // 72px
'22': '5.5rem', // 88px
'26': '6.5rem', // 104px
// Desktop navigation padding top for filling nav spacing
'navbar-height': 'var(--navbar-height)',
// containers
'container': '1.25rem',
'container-tight': '1.25rem',
'container-desktop': '6.25rem',
'container-desktop-tight': '12.5rem',
},
boxShadow: {
'2xl': '0px -4px 20px 0px rgba(46, 46, 46, 0.05)',
'3xl': '0px -4px 20px 0px rgba(85, 32, 18, 0.05)',
},
flexGrow: {
0.5: '0.5',
2: '2',
},
borderWidth: {
1.5: '1.5px',
2: '2px',
},
borderRadius: {
none: '0',
sm: '0.125rem',
DEFAULT: '0.25rem',
md: '0.375rem',
lg: '0.5rem',
full: '9999px',
},
},
},
}