-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
52 lines (51 loc) · 993 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
51
52
const { colors } = require('tailwindcss/defaultTheme');
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
purge: {
enabled: true,
content: [
'./components/**/*.tsx',
'./pages/**/*.tsx',
'./components/**/*.js',
'./pages/**/*.js',
],
},
theme: {
fontFamily: {},
extend: {
colors: {
primary: colors.blue,
secondary: colors.indigo,
neutral: colors.gray,
},
fontSize: {
12: '12px',
14: '14px',
16: '16px',
18: '18px',
20: '20px',
24: '24px',
30: '30px',
36: '36px',
48: '48px',
60: '60px',
80: '80px',
},
},
},
variants: {
borderStyle: ['responsive', 'hover', 'focus'],
transitionProperty: [
'responsive',
'hover',
'focus',
'motion-safe',
'motion-reduce',
],
},
plugins: [],
darkMode: 'media',
};