chat (wip)

This commit is contained in:
Linus109
2025-11-25 20:52:53 +01:00
parent 56ae3a1b2d
commit 154491bc3a
4 changed files with 371 additions and 3 deletions

18
app/Themes.tsx Normal file
View File

@@ -0,0 +1,18 @@
type Theme = {
chatBot: string,
primeFg: string,
primeBg: string,
messageBorderBg: string,
placeholderBg: string,
}
const defaultLight: Theme = {
chatBot: "#DE6C20",
primeFg: "#3B3329",
primeBg: "#FFEEDE",
messageBorderBg: "#FFFFFF",
placeholderBg: "#D9D9D9"
}
let currentTheme: Theme = defaultLight;
export default currentTheme;