generated from basementstudio/next-typescript
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtailwind.config.js
47 lines (46 loc) · 1013 Bytes
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
// Or if using `src` directory:
'./src/**/*.{js,ts,jsx,tsx}'
],
theme: {
extend: {
screens: {
xl: '1440px',
'better-hover': { raw: '(hover: hover) and (pointer: fine)' }
},
colors: {
black: '#000000',
cream: '#FFF5DC',
pink: '#F765B8',
teal: '#53E5D0'
},
fontFamily: {
display: ['var(--font-nichrome)'],
neon: ['var(--font-neon)']
},
fontSize: {
base: '2rem',
product: '64px',
title: '80px',
hero: '244px'
},
lineHeight: {
trim: '74%',
tight: '100%'
},
dropShadow: {
cart: '0px 2px 0px #000000',
section: '0px 8px 0px #6BE5D0'
},
borderRadius: {
extra: '32px'
}
}
},
plugins: []
}