-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
45 lines (44 loc) · 1007 Bytes
/
tailwind.config.js
File metadata and controls
45 lines (44 loc) · 1007 Bytes
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
/** @type {import('tailwindcss').Config} */
const withMT = require("@material-tailwind/react/utils/withMT");
module.exports = withMT({
content: [
"./src/**/*.{js,jsx,ts,tsx}",
"path-to-your-node_modules/@material-tailwind/react/components/**/*.{js,ts,jsx,tsx}",
"path-to-your-node_modules/@material-tailwind/react/theme/components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
gap: {
'32px': '32px',
}
},
colors: {
primary: {
100: "#F4CCC8",
200: "#EBA59E",
300: "#E27D73",
400: "#DA584B",
},
secondary:{
100: "#C8E1BC",
200: "#AAD199",
300: "#8DC275",
400: "#70B252",
},
tertiary:{
100: "#F9EED7",
200: "#F2DAAB",
300: "#EBC77F",
400: "#E5B454",
},
neutral:{
100: "#FFFFFF",
200: "#94979A",
300: "#393D41",
400: "#2C2F33",
500: "#222528",
}
},
},
plugins: [],
});