mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
9 lines
210 B
TypeScript
9 lines
210 B
TypeScript
import { useBknd } from "ui/client/bknd";
|
|
|
|
export function useTheme(): { theme: "light" | "dark" } {
|
|
const b = useBknd();
|
|
const theme = b.app.getAdminConfig().color_scheme as any;
|
|
|
|
return { theme };
|
|
}
|