-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
50 lines (50 loc) · 961 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
48
49
50
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./app/**/*.{js,ts,jsx,tsx}',
],
important: true,
theme: {
fontFamily: {
sans: ['PP Radio Grotesk', 'sans-serif'],
},
colors: {
transparent: 'transparent',
grey: {
light: '#202020',
DEFAULT: '#191919',
},
brand: {
DEFAULT: '#F4E7D4',
dark: '#B89475',
},
pop: {
DEFAULT: '#E93685',
dark: '#E01971',
},
azure: {
DEFAULT: '#D6E4FF',
dark: '#3C6CC2',
},
white: {
DEFAULT: '#ffffff',
},
},
extend: {
spacing: {
116: '28rem',
124: '32rem',
128: '48rem',
136: '64rem',
148: '80rem',
},
lineHeight: {
custom: '1.1',
},
},
},
plugins: [],
};