16 lines
449 B
TypeScript
16 lines
449 B
TypeScript
|
|
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()
|
||
|
|
);
|
||
|
|
}
|