-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
53 lines (53 loc) · 1.07 KB
/
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
51
52
53
/** @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 Formula', 'sans-serif'],
},
colors: {
transparent: 'transparent',
black: {
DEFAULT: '#5F554A',
light1: '#9E9383',
},
white: {
DEFAULT: '#FFFFFF',
},
cream: {
DEFAULT: '#FEF4E8',
dark1: '#ECDAC5',
dark2: '#D2BAA0',
dark3: '#B69A79',
light1: '#ECDAC5',
},
red: {
DEFAULT: '#CE564B',
dark1: '#B5463B',
dark2: '#9D3A31',
dark3: '#812B23',
},
green: {
DEFAULT: '#069292',
dark1: '#0E8080',
},
},
extend: {
spacing: {
116: '28rem',
124: '32rem',
128: '48rem',
136: '64rem',
148: '80rem',
156: '96rem',
},
},
},
plugins: [require('@tailwindcss/line-clamp')],
};