-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
47 lines (45 loc) · 1.07 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
const withMT = require("@material-tailwind/react/utils/withMT");
/** @type {import('tailwindcss').Config} */
module.exports = withMT({
content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}" ],
theme: {
screens: {
"sm": "540px",
"md": "720px",
"lg": "960px",
"xl": "1140px",
"2xl": "1320px",
},
container: {
center: true,
padding: "16px",
},
extend: {
colors: {
"black": "#212b36",
"dark": "#090E34",
"dark-700": "#090e34b3",
"primary": "#3056D3",
"secondary": "#13C296",
"body-color": "#637381",
"warning": "#FBBF24",
},
boxShadow: {
"input": "0px 7px 20px rgba(0, 0, 0, 0.03)",
"pricing": "0px 39px 23px -27px rgba(0, 0, 0, 0.04)",
"switch-1": "0px 0px 5px rgba(0, 0, 0, 0.15)",
"testimonial": "0px 60px 120px -20px #EBEFFD",
},
zIndex: {
'100': '100',
},
fontFamily: {
sans: [ "Inter", "sans-serif" ],
},
},
},
variants: {
extend: {},
},
plugins: [],
});