diff --git a/ui/src/lib/utils/hooks/useTheme.ts b/ui/src/lib/utils/hooks/useTheme.ts index 75930bbe..0800cf6d 100644 --- a/ui/src/lib/utils/hooks/useTheme.ts +++ b/ui/src/lib/utils/hooks/useTheme.ts @@ -3,6 +3,7 @@ import { DarkModeContext } from "lib/utils/context/DarkModeProvider"; const useTheme = () => { const { algorithm, isDarkMode } = useContext(DarkModeContext); + const THEME = { algorithm, token: { @@ -20,6 +21,15 @@ const useTheme = () => { colorPrimary: isDarkMode ? "#ffffff" : "#333333", algorithm: true, }, + Menu: { + colorPrimary: "var(--bt-color-hover)", + }, + Tabs: { + colorPrimary: "var(--bt-color-hover)", + }, + Input: { + colorPrimary: "var(--bt-color-hover)", + }, }, };