-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
53 lines (51 loc) · 1.1 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
poppins: ["Poppins", "sans-serif"],
inter: ["Inter", "sans-serif"],
},
colors: {
background: "#F9FAFB",
accent: {
50: "#F9FAFB",
100: "#F3F4F6",
200: "#E5E7EB",
300: "#D1D5DB",
400: "#9CA3AF",
500: "#6B7280",
600: "#4B5563",
700: "#374151",
800: "#1F2937",
},
secondary: {
50: "#F0FDF4",
100: "#DCFCE7",
500: "#22C55E",
600: "#16A34A",
},
primary: {
50: "#FFF7ED",
100: "#FFEDD5",
200: "#FED7AA",
300: "#FDBA74",
500: "#F97316",
},
error: {
50: "#FEF2F2",
100: "#FEE2E2",
300: "#EF4444",
},
warning: {
500: "#EAB308",
},
},
},
},
daisyui: {
darkTheme: "light",
},
plugins: [require("daisyui")],
};