-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
72 lines (72 loc) · 1.39 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
content: [
'./components/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
],
darkMode: 'class', // or 'media' or 'class'
theme: {
fontFamily: {
cabin: ['Cabin'],
},
transitionDuration: {
0: '0ms',
100: '100ms',
200: '200ms',
300: '300ms',
400: '400ms',
500: '500ms',
600: '600ms',
700: '700ms',
800: '800ms',
900: '900ms',
1000: '1000ms',
1100: '1100ms',
1200: '1200ms',
1300: '1300ms',
1400: '1400ms',
1500: '1500ms',
2000: '2000ms',
},
fontSize: {
xs: '0.75rem',
sm: '0.875rem',
base: '1rem',
lg: '1.125rem',
xl: '1.25rem',
'2xl': '1.5rem',
'3xl': '1.875rem',
'4xl': '2.25rem',
'5xl': '3rem',
'6xl': '4rem',
},
fontWeight: {
hairline: '100',
thin: '200',
light: '300',
normal: '400',
medium: '500',
semibold: '600',
bold: '700',
extrabold: '800',
black: '900',
},
extend: {
colors: {
blue: '#2B8BFC',
lightblue: '#D3E7FF',
black: '#000000',
grey: '#C4C4C4',
darkgrey: '#6B6B6B',
darkergrey: '#2c2c2e',
},
},
},
variants: {
extend: {},
},
plugins: [],
};