better folder structure; made usage of hermes engine explicit

This commit is contained in:
Linus109
2025-11-28 17:34:55 +01:00
parent 154491bc3a
commit 6740a2773b
7 changed files with 66 additions and 26 deletions

18
src/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;