-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
60 lines (56 loc) · 1.16 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
/** @type {import('tailwindcss').Config} */
// module.exports = {
// content: [
// "./src/**/*.{js,jsx,ts,tsx}",
// ],
// theme: {
// extend: {},
// },
// plugins: [],
// }
const withMT = require("@material-tailwind/react/utils/withMT");
module.exports = withMT({
content: [
"./src/**/*.{js,jsx,ts,tsx}", './node_modules/tw-elements/dist/js/**/*.js'
],
theme: {
extend: {
width: {
'96/100': '96%',
},
zIndex: {
'100': '100',
},
flex: {
'2': '2 2 0%',
'3': '3 3 0%'
},
gridTemplateRows: {
'[auto,auto,1fr]': 'auto auto 1fr',
},
spacing: {
'118': '26rem',
}
},
colors: {
'announcement': '#000',
'mainBrandColor': '#FCD200',
'lightMainBrandColor': '#FFDE59',
'darkBackground': '#360089',
'lightBackground': '#E2E0E5',
'clt1': '#FE5E54',
'clt2': '#00C9B8',
},
minWidth: {
'1/4': '25%',
}
},
corePlugins: {
aspectRatio: false,
},
plugins: [
require('@tailwindcss/forms'),
require('tw-elements/dist/plugin'),
// require('@tailwindcss/aspect-ratio'),
],
});