-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
43 lines (42 loc) · 1.01 KB
/
tailwind.config.ts
File metadata and controls
43 lines (42 loc) · 1.01 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
/** @type {import('tailwindcss').Config} */
const config = {
darkMode: "class",
content: [
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/*//.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
screens: {
'xs': '475px', // Extra small devices
},
colors: {
primary: "var(--primary)",
secondary: "var(--secondary)",
grayfill: "var(--grayfill)",
textcolor: "var(--textcolor)",
bgcolor: "var(--bgcolor)"
},
fontFamily: {
heading: ["Manrope", "sans-serif"],
body: ["Roboto", "sans-serif"],
},
animation: {
bounce: 'bounce 1.4s infinite',
},
keyframes: {
bounce: {
'0%, 80%, 100%': { transform: 'scale(0)' },
'40%': { transform: 'scale(1)' },
}
},
transitionDelay: {
'75': '0.2s',
'150': '0.4s',
}
},
},
plugins: [require("tailwindcss-animate")],
};
export default config;