-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
54 lines (51 loc) · 1.04 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
54
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {},
},
daisyui: {
themes: [
{
assignment12: {
primary: "#CCFFBD",
secondary: "#7ECA9C",
accent: "#40394A",
neutral: "#1C1427",
info: "#9C9C9C",
error: "#F87272",
warning: "#FBBD23",
"base-100": "#ffffff",
},
},
"light",
],
},
plugins: [require("daisyui")],
};
// #F0A500
// #334756
// #082032
// #000000
// module.exports = {
// content: ["./src/**/*.{html,js}"],
// theme: {
// extend: {},
// daisyui: {
// themes: [
// {
// assignment12: {
// primary: "#0FCFEC",
// secondary: "#19D3AE",
// accent: "#3A4256",
// neutral: "#3d4451",
// error: "#F87272",
// warning: "#FBBD23",
// "base-100": "#ffffff",
// },
// },
// "light",
// ],
// },
// },
// plugins: [require("daisyui")],
// };