Feat: Adoptive theme foundation

This commit is contained in:
MangoPig
2026-06-15 10:54:55 +01:00
parent ecd214652a
commit a5ca826a6e
10 changed files with 673 additions and 30 deletions

View File

@@ -1,8 +1,9 @@
// Path: Frontend/src/entry-client.tsx
// @refresh reload
import type { JSX } from "solid-js";
import { mount, StartClient } from "@solidjs/start/client";
import type { JSX } from "solid-js";
import { initializeThemeRuntime } from "./theme/runtime";
const getAppRoot = (): HTMLElement => {
const appRoot = document.getElementById("app");
@@ -18,4 +19,6 @@ const mountApp = (): void => {
mount((): JSX.Element => <StartClient />, getAppRoot());
};
void initializeThemeRuntime();
mountApp();