forked from gannonh/chatgpt-pgvector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
51 lines (40 loc) · 848 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
44
45
46
47
48
49
50
51
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}"
],
plugins: [require("daisyui")],
// daisyUI config (optional)
daisyui: {
styled: true,
themes: [
{
mytheme: {
primary: "#0EA5E9",
secondary: "#0369A1",
accent: "#D946EF",
neutral: "#1E293B",
"base-100": "#0F172A",
info: "#0CA5E9",
success: "#2DD4BF",
warning: "#F4BF50",
error: "#FB7085"
}
}
],
base: true,
utils: true,
logs: true,
rtl: false,
prefix: "",
darkTheme: "night",
},
theme: {
extend: {
fontFamily: {
sans: ["Inter var", ...defaultTheme.fontFamily.sans]
}
}
}
};