-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
43 lines (42 loc) · 951 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
module.exports = {
content: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
theme: {
colors: {
sage: 'rgb(121, 180, 183)',
cream: {
light: 'rgb(254, 251, 243)',
DEFAULT: 'rgb(241, 236, 226)',
},
grey: 'rgb(157, 157, 157)',
black: 'rgb(38,38,38)',
},
extend: {
stroke: (theme) => theme('colors'),
fill: (theme) => theme('colors'),
fill: {
current: 'currentColor',
none: 'none',
},
maxWidth: {
'8xl': '88rem',
},
scale: {
25: '.25',
97: '.97',
98: '.98',
99: '.99',
101: '1.01',
102: '1.02',
103: '1.03',
175: '1.75',
200: '2.00',
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/typography'),
require('@tailwindcss/line-clamp'),
],
}