-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (43 loc) · 1.15 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./public/**/*.{js,ts,jsx,tsx,mdx}",
"./utils/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
animation: {
"spin-wheel": "spin 40s ease-in-out infinite",
"spin-spokes": "spin-spokes 40s ease-in-out infinite",
},
keyframes: {
"spin-wheel": {
"0%": { transform: "rotate(0deg)" },
"100%": { transform: "rotate(360deg)" },
},
"spin-spokes": {
"0%": { transform: "rotate(0deg)" },
"100%": { transform: "rotate(-360deg)" },
},
},
fontFamily: {
primaryFont: ["Roboto", "Dosis", "Playpen Sans"],
headingFont: ["Montserrat Alternates", "sans-serif"],
headingFont2: ["Montserrat Subrayada", "sans-serif"],
headingFont3: ["Acme", "sans-serif"],
},
},
},
plugins: [
[
"@babel/plugin-transform-react-jsx",
{
runtime: "automatic",
importSource: "bgColor",
},
],
],
};