-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
39 lines (38 loc) · 1007 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'node_modules/flowbite-react/**/*.{js,jsx,ts,tsx}',
"./pages/**/*.tsx",
'./app/**/*.{js,ts,jsx,tsx,mdx}',
"./components/**/*.tsx"
],
important: true, // Active dark mode on class basis
darkMode: "class", i18n: {
locales: ["en-US"], defaultLocale: "en-US",
},
theme: {
extend: {
container: {
center: true,
},
backgroundImage: {
"layer1": "url('../public/background/layer1.png')",
},
blur: {
'xs': '2px',
'xxs': '1px',
}
},
},
variants: {
extend: {
backgroundColor: ["checked"], borderColor: ["checked"], inset: ["checked"], zIndex: ["hover", "active"],
},
},
plugins: [
require('flowbite/plugin'),
],
future: {
purgeLayersByDefault: true,
},
};