-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
72 lines (72 loc) · 1.62 KB
/
tailwind.config.js
File metadata and controls
72 lines (72 loc) · 1.62 KB
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
72
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
inter: ["Inter", ...defaultTheme.fontFamily.sans],
geo: ["Geo", ...defaultTheme.fontFamily.sans],
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
},
animation: {
wiggle: "wiggle 1s ease-in-out infinite",
tilt: "tilt 10s infinite linear",
},
keyframes: {
wiggle: {
"0%, 100%": {
transform: "rotate(-3deg)",
},
"50%": {
transform: "rotate(3deg)",
},
},
tilt: {
"0%, 50%, 100%": {
transform: "rotate(0deg)",
},
"25%": {
transform: "rotate(0deg)",
},
"75%": {
transform: "rotate(-0deg)",
},
},
},
},
},
plugins: [
require("daisyui"),
require("tailwindcss-fluid-type"),
require("@tailwindcss/typography"),
],
daisyui: {
themes: [
"coffee",
"cyberpunk",
"emerald",
"luxury",
"synthwave",
"valentine",
{
mrfisch: {
primary: "#61d2e4",
secondary: "#fadb31",
accent: "#ef4444",
neutral: "#1c1f37",
"base-100": "#141627",
info: "#93E6FB",
success: "#6ded8a",
warning: "#ff5f85",
error: "#ed3833",
},
},
],
},
};