18 lines
383 B
JavaScript
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",
|
|
}
|
|
};
|
|
|
|
|