-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
59 lines (47 loc) · 1.11 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
55
56
57
58
59
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
screens: {
xs: "460px",
xss: "300px",
},
fontFamily: {
sans: ['Manrope', ...defaultTheme.fontFamily.sans]
}
},
},
plugins: [require("daisyui")],
daisyui: {
themes: [
{
mytheme: {
primary: "#000",
"primary-content": "#fff",
secondary: "#E05759",
"secondary-content": "#fff",
accent: "#22d3ee",
"accent-focus": "#06b6d4",
neutral: "#000",
"neutral-content": "#fff",
"base-100": "#fff",
"base-200": "#f8fafc",
// "base-200": "#f8fafc",
// for hover use bg-slate-50
"base-300": "#fff",
info: "#7dd3fc",
success: "#6EE2D9",
// "success-content": "#fff",
warning: "#F9BA4E",
error: "#EF4B39",
"error-content": "#fff",
},
},
// "dracula"
],
},
};