forked from Hasnayeen/invobook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
81 lines (81 loc) · 1.82 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
73
74
75
76
77
78
79
80
81
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
purge: [
'./resources/**/*.js',
'./resources/views/**/*.blade.php'
],
theme: {
extend: {
screens: {
xxl: '1440px', // 90rem
'2xl': '1720px'
},
colors: {
'azure': {
100: '#E6F2FF',
200: '#BFDFFF',
300: '#99CCFF',
400: '#4DA5FF',
500: '#007FFF',
600: '#0072E6',
700: '#004C99',
800: '#003973',
900: '#00264D',
},
indigo: {
100: '#ebf4ff',
200: '#c3dafe',
300: '#a3bffa',
400: '#7f9cf5',
500: '#667eea',
600: '#5a67d8',
700: '#4c51bf',
800: '#434190',
900: '#3c366b',
1000: '#2E3173',
1100: '#222456',
1200: '#171839',
1300: '#14142B'
},
},
borderRadius: {
xl: '.75rem',
'2xl': '1rem'
},
boxShadow: {
xs: '0 0 0 1px rgba(0, 0, 0, 0.05)',
sm: '0 1px 2px 0 rgba(0, 0, 0, 0.05)',
dark: '0 1px 3px 0 rgba(0, 0, 0, 0.9), 0 1px 2px 0 rgba(0, 0, 0, 0.9)',
'dark-md': '0 4px 6px -1px rgba(0, 0, 0, 1), 0 2px 4px -1px rgba(0, 0, 0, 1)',
'dark-2xl': '0 40px 50px -10px rgba(0, 0, 0, 0.96), 0 30px 30px -10px rgba(0, 0, 0, 0.97)'
},
spacing: {
68: '17rem',
72: '18rem',
80: '20rem',
88: '22rem',
96: '24rem',
128: '32rem'
},
maxWidth: {
'10xl': '104rem'
},
width: {
md: '708px',
lg: '900px',
xl: '1140px',
'2xl': '1320px'
},
zIndex: {
60: '60'
}
}
},
variants: {},
plugins: [
require('@tailwindcss/custom-forms'),
],
}