Files
chat-proxy/frontend/src/themes.js
T
2025-08-22 13:50:11 +00:00

18 lines
383 B
JavaScript

// themes.js
export const themes = {
light: {
userBg: "bg-primary bg-opacity-25 text-dark",
assistantBg: "bg-white border text-dark",
bodyBg: "bg-light",
headerBg: "bg-primary text-white",
},
dark: {
userBg: "bg-primary text-white",
assistantBg: "bg-secondary text-white",
bodyBg: "bg-black text-white",
headerBg: "bg-dark text-white",
}
};