-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtailwind.config.js
More file actions
56 lines (56 loc) · 3.43 KB
/
tailwind.config.js
File metadata and controls
56 lines (56 loc) · 3.43 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./templates/**/*.html",
"./static/js/**/*.js",
],
safelist: [
'animate-spin', 'bg-[#17a2b8]', 'bg-[#28a745]', 'bg-[#6c757d]', 'bg-[#dc3545]', 'bg-[#ffc107]',
'bg-black', 'bg-blue-100', 'bg-blue-50', 'bg-blue-600', 'bg-blue-700', 'bg-blue-800', 'bg-gradient-to-br', 'bg-gradient-to-r',
'bg-gray-100', 'bg-gray-50', 'bg-gray-600', 'bg-green-100', 'bg-green-50', 'bg-green-600',
'bg-red-100', 'bg-red-50', 'bg-white', 'bg-yellow-100', 'bg-yellow-50',
'border-2', 'border-4', 'border-b', 'border-b-2', 'border-black', 'border-blue-200',
'border-blue-500', 'border-blue-600', 'border-blue-800', 'border-gray-200', 'border-gray-300', 'border-green-200',
'border-green-400', 'border-green-500', 'border-l', 'border-l-4', 'border-r', 'border-red-400',
'border-red-500', 'border-t', 'border-t-blue-900', 'border-yellow-400',
'cursor-pointer', 'divide-gray-200', 'divide-y', 'duration-300',
'flex-col', 'flex-shrink-0', 'focus:outline-none',
'font-bold', 'font-medium', 'font-mono', 'font-semibold',
'from-blue-500', 'from-blue-900', 'from-green-500', 'from-purple-500',
'gap-2', 'gap-3', 'gap-4', 'gap-5', 'gap-6', 'gap-8',
'grid-cols-1', 'grid-cols-2',
'h-10', 'h-12', 'h-3', 'h-6', 'h-8', 'h-96',
'hover:bg-blue-700', 'hover:bg-gray-200', 'hover:bg-gray-700', 'hover:bg-gray-800',
'hover:bg-green-700', 'hover:shadow-lg', 'hover:shadow-xl', 'hover:text-gray-600',
'inline-block', 'inline-flex', 'items-center', 'items-start',
'justify-between', 'justify-center', 'leading-relaxed',
'lg:grid-cols-2', 'lg:grid-cols-3', 'lg:grid-cols-4', 'lg:grid-cols-6',
'm-0', 'max-w-2xl', 'max-w-7xl', 'max-w-full',
'md:grid-cols-2', 'md:grid-cols-3', 'min-w-full',
'opacity-90', 'overflow-x-auto',
'p-10', 'p-3', 'p-4', 'p-5', 'p-6', 'p-8',
'rounded-full', 'rounded-lg', 'rounded-md', 'rounded-t-lg', 'rounded-xl',
'shadow-lg', 'shadow-md', 'shadow-sm',
'space-x-6', 'space-y-1', 'space-y-2', 'space-y-3', 'space-y-4',
'text-2xl', 'text-3xl', 'text-base', 'text-black', 'text-blue-600', 'text-blue-700',
'text-blue-800', 'text-blue-900', 'text-center', 'text-gray-500', 'text-gray-600',
'text-gray-700', 'text-gray-800', 'text-green-500', 'text-green-600', 'text-green-700',
'text-green-800', 'text-left', 'text-lg', 'text-orange-500', 'text-orange-600',
'text-purple-600', 'text-red-600', 'text-red-700', 'text-red-800', 'text-sm',
'text-white', 'text-xl', 'text-xs', 'text-yellow-700', 'text-yellow-800',
'to-blue-600', 'to-green-600', 'to-purple-600', 'to-red-700', 'transition-all',
'w-10', 'w-12', 'w-3', 'w-6', 'w-full', 'z-10',
// Additional common utilities that might be dynamically added
'block', 'hidden', 'flex', 'grid', 'relative', 'absolute', 'fixed', 'sticky',
'mx-auto', 'my-1', 'my-2', 'my-4', 'my-5', 'my-8', 'mt-0', 'mt-1', 'mt-2', 'mt-3', 'mt-4', 'mt-6', 'mt-10',
'mb-2', 'mb-3', 'mb-4', 'mb-5', 'mb-6', 'mb-8', 'ml-3', 'mr-2', 'mr-3',
'px-2', 'px-3', 'px-4', 'px-6', 'px-8', 'py-1', 'py-2', 'py-3', 'py-4', 'py-5', 'py-8', 'py-10', 'py-12', 'py-16',
'pt-2', 'pt-3', 'border', 'border-collapse', 'transition', 'transform', 'ease-in-out',
'underline', 'no-underline', 'uppercase', 'italic', 'visible', 'collapse', 'static',
'table', 'inline', 'contents', 'flex-wrap', 'resize', 'md:flex', 'md:hidden'
],
theme: {
extend: {},
},
plugins: [],
}