-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
38 lines (37 loc) · 916 Bytes
/
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
const { fontFamily } = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}", // Note the addition of the `app` directory.
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
backgroundSize: {
"4x": "400%",
},
extend: {
fontFamily: {
sans: ["var(--font-roboto)", ...fontFamily.sans],
monoton: ["var(--font-monoton)", ...fontFamily.sans],
},
animation: {
"color-rotate": "color-rotate 6s ease infinite",
},
keyframes: {
"color-rotate": {
"0%, 100%": {
"background-position": "0% 50%",
},
"50%": {
"background-position": "100% 50%",
},
},
},
},
},
plugins: [
require("@tailwindcss/typography"),
// ...
],
};