-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
47 lines (47 loc) · 1.19 KB
/
tailwind.config.js
File metadata and controls
47 lines (47 loc) · 1.19 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
fontFamily: {
'poppins': ["Poppins", "serif"],
'antonio': ["Antonio", "serif"],
},
backgroundImage: {
login: "url('https://i.ibb.co.com/6Wc3V7X/login.jpg')",
register: "url('https://i.ibb.co.com/KFRjY0z/register.jpg')",
},
},
daisyui: {
themes: [
{
light: {
primary: "#000000",
secondary: "#ffffff",
accent: "#9002F1",
neutral: "#52525B",
"base-100": "#FFFFFF",
"base-200": "#F3F4F6",
"base-300": "#E5E7Eb",
info: "#0ea5e9",
success: "#10b981",
warning: "#f97316",
error: "#f43f5e",
},
dark: {
primary: "#FFFFFF",
secondary: "#000000",
accent: "#9002F1",
neutral: "#52525B",
"base-100": "#010409",
"base-200": "#0D1117",
"base-300": "#151B23",
info: "#0ea5e9",
success: "#10b981",
warning: "#f97316",
error: "#f43f5e",
},
},
],
},
plugins: [require("daisyui")],
};