-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
72 lines (72 loc) · 1.75 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
72
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./public/**/*.{html,js}"],
theme: {
fontFamily: {
quicksand: ["Quicksand", "sans-serif"],
poppins: ["Poppins", "sans-serif"],
},
transitionDuration: {
DEFAULT: "500ms",
},
letterSpacing: {
tightest: "-.075em",
tighter: "-.05em",
tight: "-.025em",
normal: "0",
wide: ".025em",
wider: ".5rem",
widest: "1rem",
},
extend: {
animation: {
gradient: "gradient 2s linear infinite",
"spin-slow": "spin 5s linear infinite",
"spin-slowest": "spin 100s linear infinite",
"bounce-slow": "bounce 2s linear infinite",
},
keyframes: {
gradient: {
"0%, 100%": {
"background-size": "200% 200%",
"background-position": "left center",
},
"50%": {
"background-size": "200% 200%",
"background-position": "right center",
},
},
},
},
},
daisyui: {
themes: [
{
light: {
...require("daisyui/src/theming/themes")["light"],
primary: "#65c3c8",
secondary: "#ef9fbc",
accent: "#eeaf3a",
info: "#3abff8",
success: "#36d399",
warning: "#fbbd23",
error: "#f87272",
},
night: {
...require("daisyui/src/theming/themes")["dark"],
primary: "#3abff8",
secondary: "#828df8",
accent: "#f471b5",
info: "#0ca6e9",
success: "#2bd4bd",
warning: "#f4c152",
error: "#fb6f84",
},
},
],
},
plugins: [
require("daisyui"),
require("tailwind-scrollbar")({ nocompatible: true }),
],
};