mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-02 08:06:00 +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 };
|
|
}
|