-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
54 lines (54 loc) · 1.42 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class", '[data-theme="dracula"]'],
mode: "jit",
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
backgroundImage: {
primaryGradient: "linear-gradient(to right, #d63664, #f06f78)",
},
keyframes: {
wave: {
"0%": { transform: "rotate(0.0deg)" },
"15%": { transform: "rotate(14.0deg)" },
"30%": { transform: "rotate(-8.0deg)" },
"40%": { transform: "rotate(14.0deg)" },
"50%": { transform: "rotate(-4.0deg)" },
"60%": { transform: "rotate(10.0deg)" },
"70%": { transform: "rotate(0.0deg)" },
"100%": { transform: "rotate(0.0deg)" },
},
},
animation: {
wave: "wave 1.5s infinite",
},
},
},
plugins: [
require("@tailwindcss/typography"),
require("daisyui"),
require("tailwind-scrollbar"),
],
daisyui: {
themes: [
{
cmyk: {
...require("daisyui/src/colors/themes")["[data-theme=cmyk]"],
primary: "#f06f78",
neutral: "#414558",
},
dracula: {
...require("daisyui/src/colors/themes")["[data-theme=dracula]"],
primary: "#f06f78",
neutral: "#414558",
},
},
],
darkTheme: "dracula",
},
};