-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (38 loc) 路 814 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
38 lines (38 loc) 路 814 Bytes
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
module.exports = {
mode: "jit",
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
screens: {
"2xl": "1500px",
},
keyframes: {
pulse: {
"0%, 100%": {
opacity: 1,
},
"50%": {
opacity: 0.5,
},
},
},
animation: {
pulse: "pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite",
},
},
fontFamily: {
body: ["Andada Pro", "serif"],
sans: ["ui-sans-serif", "system-ui"],
},
},
variants: {
extend: {},
scrollbar: ["rounded"],
},
plugins: [
require("tailwind-scrollbar-hide"),
require("@tailwindcss/forms"),
require("tailwind-scrollbar"),
],
};