-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
71 lines (67 loc) · 1.63 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
60
61
62
63
64
65
66
67
68
69
70
71
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
animation: {
blob: "blob 7s infinite",
},
keyframes: {
blob: {
"0%": {
transform: "translate(0px, 0px) scale(1)",
},
"33%": {
transform: "translate(30px, -50px) scale(1.1)",
},
"66%": {
transform: "translate(-20px, 20px) scale(0.9)",
},
"100%": {
transform: "tranlate(0px, 0px) scale(1)",
},
},
},
},
},
// add daisyUI plugin
plugins: [require("daisyui")],
// daisyUI config (optional - here are the default values)
daisyui: {
themes: [
{
night: {
...require("daisyui/src/theming/themes")["[data-theme=night]"],
primary: "#0aff9d",
"base-100": "#0a192f",
".bg-dark": {
"background-color": "#09162a",
},
"base-content": "#fafafa",
"neutral-content": "#a6a6a6",
},
winter: {
...require("daisyui/src/theming/themes")["[data-theme=winter]"],
primary: "#0aff9d",
".bg-dark": {
"background-color": "#fafafa",
},
"base-100": "#fafafa",
"base-content": "#0a192f",
"neutral-content": "#3b4759",
},
},
],
darkTheme: "night",
base: true,
styled: true,
utils: true,
rtl: false,
prefix: "",
logs: true,
},
};