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

@@ -0,0 +1,11 @@
// Path: Frontend/src/theme/presets.ts
import type { ThemeDefinition } from "./schema";
export const defaultThemePresetPath = "/themes/moku-default.json";
export const defaultThemePresetMeta = {
id: "moku-default",
name: "Moku Default",
description: "The baseline Moku theme preset, matching the current shell styling tokens.",
} satisfies Pick<ThemeDefinition, "id" | "name" | "description">;