-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
41 lines (41 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class", '[data-theme="dracula"]'],
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
"brand-fb": "#0165E1",
"brand-ig": "#FCAF45",
},
keyframes: {
sb: {
"0%": { transform: "translateY(0)" },
"100%": { transform: "translateY(-10%)" },
},
wave: {
"0%": { transform: "rotate(0.0deg)" },
"10%": { transform: "rotate(14deg)" },
"20%": { transform: "rotate(-8deg)" },
"30%": { transform: "rotate(14deg)" },
"40%": { transform: "rotate(-4deg)" },
"50%": { transform: "rotate(10.0deg)" },
"60%": { transform: "rotate(0.0deg)" },
"100%": { transform: "rotate(0.0deg)" },
},
},
animation: {
sb: "sb 1s infinite alternate",
wave: "wave 2s linear infinite",
},
},
},
plugins: [require("daisyui")],
daisyui: {
themes: ['light', 'dracula']
}
};