-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
35 lines (33 loc) · 995 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
const withMT = require("@material-tailwind/react/utils/withMT");
module.exports = withMT({
mode: 'jit',
content: [
"./packages/material-tailwind-react/src/components/**/*.{js,ts,jsx,tsx}",
"./packages/material-tailwind-react/src/theme/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./widgets/**/*.{js,ts,jsx,tsx}",
"./docs-content/**/*.{js,ts,jsx,tsx}",
"./documentation/**/*.mdx",
"./public/material-tailwind-html-v2.js",
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}"
],
darkMode: false,
theme: {
fontFamily: {
sans: ['Malgun Gothic', 'sans-serif'],
serif: ['"Roboto Slab"', 'serif'],
body: ['Roboto', 'sans-serif'],
},
extend: {
colors: {
mainColor: '#0F8AFD',
},
},
},
variants: {
extend: {},
},
plugins: [],
});