-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
39 lines (38 loc) · 940 Bytes
/
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
poppins: ["regular", "sans-serif"],
"poppins-light": ["light", "sans-serif"],
"poppins-medium": ["medium", "sans-serif"],
"poppins-semibold": ["semibold", "sans-serif"],
"poppins-bold": ["bold", "sans-serif"],
"poppins-extrabold": ["extrabold", "sans-serif"],
},
colors: {
"bg": {
"400": "#FFDDA3"
},
"primary": {
"50": "#fdf4ef",
"100": "#fae5da",
"200": "#f4c7b4",
"300": "#eca285",
"400": "#e37050",
"500": "#dd5032",
"600": "#cf3a27",
"700": "#ac2a22",
"800": "#892423",
"900": "#6f201f",
"950": "#3c0e0f"
}
}
},
},
plugins: [],
}