Refactor launcher and studio modules

This commit is contained in:
Andraxion 2026-06-27 04:36:26 -04:00
parent a20d298be2
commit ec3e0f5138
34 changed files with 10300 additions and 8600 deletions

View file

@ -0,0 +1,15 @@
import { buildWorldshaperStudioThemeOverrideCss } from "./themePresets";
import {
WORLDSHAPER_STUDIO_STYLE_SHELL,
WORLDSHAPER_STUDIO_STYLE_SIDEBAR,
WORLDSHAPER_STUDIO_STYLE_STAGE,
} from "./domStyleSections";
export function buildWorldshaperStudioStyles(): string {
return (
WORLDSHAPER_STUDIO_STYLE_SHELL
+ WORLDSHAPER_STUDIO_STYLE_SIDEBAR
+ WORLDSHAPER_STUDIO_STYLE_STAGE
+ buildWorldshaperStudioThemeOverrideCss()
);
}