-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
53 lines (44 loc) · 976 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
52
53
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"node_modules/daisyui/dist/**/*.js",
],
theme: {
extend: {
fontFamily: {
sans: ["Noev", "sans-serif"],
neov: ["Noev", "sans-serif"],
poppins: ["Poppins", "sans-serif"],
},
backgroundImage: {
"bg-home": "url('spotifai.png')",
},
zIndex: {
100: "100",
},
},
},
daisyui: {
themes: [
{
mytheme: {
primary: "#4C0378",
secondary: "#4F0147",
accent: "#35012C",
neutral: "#FCFCFC",
"base-100": "#11001C",
info: "#13012f",
btn: "#11001C",
success: "#80ced1",
warning: "#efd8bd",
error: "#e58b8b",
"nav-color": "#130120",
},
},
],
},
// plugins: [import("daisyui")],
plugins: [require("daisyui")],
};