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