forked from clementdelestre/TeX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
67 lines (63 loc) · 1.62 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
const colors = require('tailwindcss/colors')
module.exports = {
// purge: {
// enabled: process.env.NODE_ENV,
// content: [
// './src/**/*.{html,js}',
// ],
// },
content: [
'./src/**/*.{html,js}',
],
theme: {
extend: {
colors: {
"dark-full": "#151515",
"dark-gray": "#2a2b2b",
gray: colors.neutral,
primary : "#f59e0b"
},
spacing: {
'58': '14.5rem',
'37': '9.25rem',
},
transitionProperty: {
'height': 'height',
'max-height' : 'max-height'
},
height: {
"screen3/2": "150vh",
"screen3/4": "75vh",
"screen/2": "50vh",
"screen/3": "calc(100vh / 3)",
"screen/4": "calc(100vh / 4)",
"screen/5": "calc(100vh / 5)",
},
maxHeight: {
"screen3/2": "150vh",
"screen3/4": "75vh",
"screen/2": "50vh",
"screen/3": "calc(100vh / 3)",
"screen/4": "calc(100vh / 4)",
"screen/5": "calc(100vh / 5)",
}
}
},
variants: {
extend: {
opacity: ['active', 'group-focus'],
pointerEvents: ['hover', 'focus', 'group-hover', 'group-focus'],
fontSize: ['hover', 'focus'],
textColor: ['group-focus']
}
},
plugins: [
require('@tailwindcss/forms'),
require('tailwindcss-textshadow'),
require('tailwind-scrollbar-hide'),
require('tailwind-scrollbar'),
require('@tailwindcss/aspect-ratio'),
],
corePlugins: {
},
};