-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtailwind.config.js
More file actions
51 lines (51 loc) · 1.3 KB
/
tailwind.config.js
File metadata and controls
51 lines (51 loc) · 1.3 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./templates/**/*.html",
"./mcp/templates/**/*.html",
"./mcp/dashboard/templates/**/*.html",
"./ipfs_kit_py/mcp/dashboard/templates/**/*.html",
"./static/**/*.js",
"./mcp/dashboard/static/**/*.js",
"./ipfs_kit_py/mcp/dashboard/static/**/*.js",
// Include specific Python files with HTML strings (avoid node_modules)
"./ipfs_kit_py/**/*.py",
"./mcp/**/*.py",
"./*.py",
],
theme: {
extend: {
colors: {
// Custom colors for IPFS Kit dashboard
'ipfs-blue': '#3b82f6',
'ipfs-green': '#10b981',
'ipfs-purple': '#8b5cf6',
},
fontFamily: {
'inter': ['Inter', 'ui-sans-serif', 'system-ui', '-apple-system', 'sans-serif'],
},
},
},
plugins: [],
// Safelist commonly used utility classes to ensure they're included
safelist: [
'bg-blue-500',
'bg-green-500',
'bg-yellow-500',
'bg-red-500',
'bg-purple-500',
'bg-indigo-500',
'bg-orange-500',
'hover:bg-blue-600',
'hover:bg-green-600',
'hover:bg-yellow-600',
'hover:bg-red-600',
'hover:bg-purple-600',
'hover:bg-indigo-600',
'hover:bg-orange-600',
'text-white',
'text-gray-800',
'text-gray-600',
'text-gray-700',
],
}