forked from tcet-opensource/tcet-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
29 lines (28 loc) · 907 Bytes
/
tailwind.config.cjs
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
const defaultTheme = require("tailwindcss/defaultTheme");
const withMT = require("@material-tailwind/react/utils/withMT");
/** @type {import('tailwindcss').Config} */
module.exports = withMT({
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}",
"./node_modules/@material-tailwind/react/theme/components/**/*.{js,ts,jsx,tsx}",
"./node_modules/@material-tailwind/react/theme/components/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {
fontFamily: {
sans: ["Inter", ...defaultTheme.fontFamily.sans],
title: ["Fraunces", ...defaultTheme.fontFamily.serif],
playfair: ["Playfair Display", ...defaultTheme.fontFamily.sans],
},
keyframes: {
fadeIn: {
"0%": { opacity: 0 },
"100%": { opacity: 1 },
},
},
animation: {
fadeIn: "fadeIn 0.2s ease-in-out ",
}
},
},
plugins: [],
});