-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
29 lines (28 loc) · 991 Bytes
/
tailwind.config.js
File metadata and controls
29 lines (28 loc) · 991 Bytes
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
import tailwindcss from "tailwindcss";
/** @type {import('tailwindcss').Config} */
export default {
// For Tailwind 4, we use @import in CSS instead of content paths
theme: {
extend: {
colors: {
"chatbot-primary": "var(--chatbot-primary, #3b82f6)",
"chatbot-secondary": "var(--chatbot-secondary, #1e40af)",
"chatbot-accent": "var(--chatbot-accent, #60a5fa)",
"chatbot-background": "var(--chatbot-background, #ffffff)",
"chatbot-surface": "var(--chatbot-surface, #f8fafc)",
"chatbot-text": "var(--chatbot-text, #1f2937)",
"chatbot-text-secondary": "var(--chatbot-text-secondary, #6b7280)",
"chatbot-border": "var(--chatbot-border, #e5e7eb)",
},
fontFamily: {
chatbot: "var(--chatbot-font, system-ui, sans-serif)",
},
zIndex: {
chatbot: "9999",
},
},
},
corePlugins: {
preflight: false, // Disable preflight to avoid conflicts in host applications
},
};