-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
48 lines (48 loc) · 1.29 KB
/
tailwind.config.js
File metadata and controls
48 lines (48 loc) · 1.29 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/**/*.{js,jsx,ts,tsx}"],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
manrope: ["Manrope", "sans-serif"],
},
fontSize: {
xs: "0.75rem",
sm: "0.875rem",
base: "1rem",
lg: "1.125rem",
xl: "1.25rem",
"2xl": "1.5rem",
"3xl": "1.875rem",
"4xl": "2.25rem",
"5xl": "3rem",
"6xl": "4rem",
"7xl": "5rem",
"8xl": "6rem",
"9xl": "9rem",
},
animation: {
cursor: "cursor .6s linear infinite alternate",
type: "type 1.8s ease-out .8s 1 normal both",
"type-reverse": "type 1.8s ease-out 0s infinite alternate-reverse both",
},
keyframes: {
type: {
"0%": { width: "0ch" },
"5%, 10%": { width: "1ch" },
"15%, 20%": { width: "2ch" },
"25%, 30%": { width: "3ch" },
"35%, 40%": { width: "4ch" },
"45%, 50%": { width: "5ch" },
"55%, 60%": { width: "6ch" },
"65%, 70%": { width: "7ch" },
"75%, 80%": { width: "8ch" },
"85%, 90%": { width: "9ch" },
"95%": { width: "10ch" }
},
},
},
},
plugins: [require('flowbite/plugin')],
};