-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
83 lines (82 loc) · 2.46 KB
/
tailwind.config.ts
File metadata and controls
83 lines (82 loc) · 2.46 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
fontFamily: {
'text-font': 'var(--text-font)',
headingFont: 'var(--headingFont)',
'heading-narrow': 'var(--heading-narrow)',
},
letterSpacing: {
hero: '-0.01em',
},
backgroundSize: {
'curve-size': '101% auto',
'curve-size-xl': '106% auto',
},
backgroundImage: {
squiggle1: 'url("/images/squiggle1.svg")',
squiggle2: 'url("/images/squiggle2.svg")',
squiggle3: 'url("/images/squiggle3.svg")',
squiggle4: 'url("/images/squiggle4.svg")',
squiggle5: 'url("/images/squiggle5.svg")',
squiggle6: 'url("/images/squiggle6.svg")',
squiggle7: 'url("/images/squiggle7.svg")',
flower: 'url("/images/flower.svg")',
sticker: 'url("/images/sticker.svg")',
curve: 'url("/images/curve.svg")',
'curve-md': 'url("/images/curve-md.svg")',
'curve-xl': 'url("/images/curve-xl.svg")',
'curve-white': 'url("/images/curve-white.svg")',
'curve-white-md': 'url("/images/curve-white-md.svg")',
'curve-white-xl': 'url("/images/curve-white-xl.svg")',
weight: 'url("/images/weight.svg")',
case: 'url("/images/case.svg")',
plus: 'url("/images/plus.svg")',
pieces: 'url("/images/products/pieces-7-e1689971037607-473x214.png")',
mince: 'url("/images/products/mince-9-e1689971464732-471x473.png")',
negg: 'url("/images/products/negg-e1690228015512-473x433.png")',
fillet: 'url("/images/products/fillets-3-473x469.png")',
},
transitionProperty: {},
screens: {
tall: { raw: '(min-height: 800px)' },
'600': { raw: '(min-width: 600px)' },
'1600': { raw: '(min-width: 1600px)' },
'minw-maxh-md': { raw: ' (min-width: 768px) and (max-height: 768px)' },
'minw-lg-maxh-md': {
raw: ' (min-width: 1024px) and (max-height: 768px)',
},
'minw-maxh-lg': {
raw: '(min-width: 1024px) and (max-height: 1024px)',
},
},
keyframes: {
marquee: {
'0%': {
transform: 'translate3d(0%, 0, 0)',
},
'100%': {
transform: 'translate3d(-100%, 0, 0)',
},
},
},
animation: {
marquee: 'marquee 40s linear infinite',
},
boxShadow: {
inset: 'inset 0 0 0 2px rgba(255,246,246,0.1)',
},
backgroundPosition: {
select: 'calc(100% - 1em) 50%',
},
},
},
plugins: [],
}
export default config