-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
63 lines (62 loc) · 2.6 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
import tailwindBreakpointsInspector from 'tailwindcss-breakpoints-inspector';
import tailwindScrollbar from 'tailwind-scrollbar';
import { tailwindClipInset, tailwindMaskEdges } from 'tailwind-css-plugins/meta';
export default {
future: {
hoverOnlyWhenSupported: true,
},
content: ['./index.html', './src/**/*.{js,ts,tsx}'],
theme: {
extend: {
spacing: {
84: '21rem',
88: '22rem',
92: '23rem',
96: '24rem',
100: '25rem',
104: '26rem',
108: '27rem',
112: '28rem',
116: '29rem',
120: '30rem',
124: '31rem',
128: '32rem',
132: '33rem',
136: '34rem',
140: '35rem',
144: '36rem',
148: '37rem',
152: '38rem',
156: '39rem',
160: '40rem',
164: '41rem',
168: '42rem',
},
fontFamily: {
'besley': ['Besley', 'ui-serif', 'serif'],
'dm-serif': ['"DM Serif Display"', 'ui-serif', 'serif'],
'barlow': ['"Barlow Semi Condensed"', 'ui-sans-serif', 'system-ui', 'sans-serif'],
'protest-strike': ['"Protest Strike"', 'ui-sans-serif', 'system-ui', 'sans-serif'],
'protest-riot': ['"Protest Riot"', 'ui-sans-serif', 'system-ui', 'sans-serif'],
'protest-revolution': ['"Protest Revolution"', 'ui-sans-serif', 'system-ui', 'sans-serif'],
'caveat': ['Caveat', 'ui-sans-serif', 'system-ui', 'sans-serif'],
},
fontSize: {
'2xs': '0.666rem',
'3xs': '0.55rem',
},
boxShadow: {
'top-rim-lg': 'inset 0px 10px 4px -10px rgb(0 0 0 / 0.1)',
'with-top-lg': '0px -1px 10px -1px rgb(0 0 0 / 0.1), 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)',
'with-top-xl': '0px -3px 14px -4px rgb(0 0 0 / 0.1), 0px 20px 25px -5px rgb(0 0 0 / 0.1), 0px 8px 10px -6px rgb(0 0 0 / 0.1)',
'inner-sm-border': 'inset 0 0 1.5rem 1.5rem var(--tw-shadow-color)',
'inner-sm': 'inset 0 0 2rem 0.5rem var(--tw-shadow-color)',
'inner-md': 'inset 0 0 4rem 1rem var(--tw-shadow-color)',
},
willChange: {
filter: 'filter',
},
},
},
plugins: [tailwindScrollbar, tailwindBreakpointsInspector, tailwindClipInset, tailwindMaskEdges],
};