-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
46 lines (46 loc) · 911 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: ["./src/**/*.{html,js}", "./public/index.html"],
theme: {
extend: {
fontFamily: {
recursive: ["Marck Script"],
cool: ["Carter One"],
},
scale: {
102: '1.02'
},
animation: {
shake: "shake 1s 2",
},
keyframes: {
shake: {
"0%": {
transform: "rotate(0)",
},
"33%": {
transform: "rotate(15deg)",
},
"66%": {
transform: "rotate(-15deg)",
},
"100%": {
transform: "rotate(0)",
},
},
},
},
},
plugins: [require("daisyui")],
daisyui: {
styled: true,
themes: false,
base: false,
utils: true,
logs: true,
rtl: false,
prefix: "",
darkTheme: "dark",
},
};