-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (43 loc) · 918 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
39
40
41
42
43
import daisyui from "daisyui";
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
primary: {
50: "#FBFFE7",
100: "#F6FCC3",
300: "#E5F96E",
400: "#DFF547",
700: "#C1CD00",
base: "#DEF81C",
},
secondary: {
50: "#FAFAFA",
100: "#F5F5F5",
300: "#E1E1E1",
500: "#9F9F9F",
700: "#626262",
base: "#222222",
},
success: "#13CE66",
info: "#3366FF",
Warning: "#FFB020",
danger: "#FF000D",
},
fontFamily: {
sans: ["Poppins", "sans-serif"],
},
fontSize: {
"32px": "32px",
},
},
},
plugins: [daisyui],
daisyui: {
theme: false,
base: false,
darkTheme: "light",
},
};