mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-05 09:32:53 +00:00
13 lines
256 B
TypeScript
13 lines
256 B
TypeScript
import {
|
|
themeBase,
|
|
themeColor,
|
|
themeSuccessBase,
|
|
} from "$lib/style/theme.server";
|
|
import type { LayoutServerLoad } from "./$types";
|
|
|
|
export const load = (async () => ({
|
|
themeSuccessBase,
|
|
themeBase,
|
|
themeColor,
|
|
})) satisfies LayoutServerLoad;
|