-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
70 lines (60 loc) · 1.79 KB
/
Copy pathtailwind.config.js
File metadata and controls
70 lines (60 loc) · 1.79 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// tailwind.config.js
const {nextui} = require("@nextui-org/theme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.tsx",
"./node_modules/@nextui-org/theme/dist/components/(accordion|button|card|chip|divider|input|listbox|modal|pagination|popover|progress|radio|scroll-shadow|tabs|ripple|spinner).js"
],
purge: {
options: {
safelist: [
"from-rose-500",
"to-red-700",
"from-teal-300",
"to-cyan-700",
"bg-stone-600",
"bg-teal-600",
"bg-orange-500",
"bg-violet-800",
"bg-rose-700",
"stroke-emerald-50",
"stroke-emerald-100",
"stroke-emerald-200",
"stroke-emerald-300",
"stroke-emerald-400",
"stroke-emerald-500",
"bg-gradient-to-t",
"bg-gradient-to-tr",
"bg-gradient-to-r",
"bg-gradient-to-b",
"bg-gradient-to-br",
"from-gray-200 to-gray-600",
"from-teal-500 to-cyan-400",
"from-amber-300 to-yellow-300",
"from-amber-400 to-orange-500",
"from-fuchsia-400 via-rose-500 to-orange-500",
"from-red-700 to-rose-500",
"from-orange-700 to-amber-500",
"from-yellow-700 to-lime-500",
"from-lime-700 to-teal-500",
"from-rose-400 to-rose-500",
"from-orange-400 to-orange-500",
"from-amber-600 to-yellow-300",
"from-emerald-600 to-teal-400",
"bg-gradient-to-tr from-stone-400 to-stone-200 inline-block text-transparent bg-clip-text pl-1",
"from-teal-400 to-sky-600",
"from-violet-400 to-purple-500",
"from-amber-400 to-yellow-400",
"from-pink-500 to-fuchsia-400"
],
},
},
theme: {
extend: {}
},
darkMode: "class",
plugins: [
nextui(),
],
}