prepared folderstructure for monorepo with express.js
This commit is contained in:
20
apps/client/src/Themes.tsx
Normal file
20
apps/client/src/Themes.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
type Theme = {
|
||||
chatBot: string,
|
||||
primeFg: string,
|
||||
primeBg: string,
|
||||
messageBorderBg: string,
|
||||
placeholderBg: string,
|
||||
calenderBg: string,
|
||||
}
|
||||
|
||||
const defaultLight: Theme = {
|
||||
chatBot: "#DE6C20",
|
||||
primeFg: "#3B3329",
|
||||
primeBg: "#FFEEDE",
|
||||
messageBorderBg: "#FFFFFF",
|
||||
placeholderBg: "#D9D9D9",
|
||||
calenderBg: "#FBD5B2",
|
||||
}
|
||||
|
||||
let currentTheme: Theme = defaultLight;
|
||||
export default currentTheme;
|
||||
Reference in New Issue
Block a user