class myTheme implements CustomTheme{ colors?: CustomColors
constructor(color: CustomColors) { this.colors = color } } onWindowStageCreate(windowStage: window.WindowStage): void { hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageCreate'); const theme = new myTheme() ThemeControl.setDefaultTheme(theme) }
|