Interface: IColorThemeService
molecule.IColorThemeService
Implemented by
Methods
addThemes
▸ addThemes(themes
): void
Add themes into colorThemes
This will update the duplicated themes found in colorThemes
Parameters
Name | Type |
---|---|
themes | IColorTheme | IColorTheme [] |
Returns
void
Defined in
src/services/theme/colorThemeService.ts:23
getColorTheme
▸ getColorTheme(): IColorTheme
Get the current Color Theme
Returns
Defined in
src/services/theme/colorThemeService.ts:47
getThemeById
▸ getThemeById(id
): void
Get specific theme via id
Parameters
Name | Type |
---|---|
id | string |
Returns
void
Defined in
src/services/theme/colorThemeService.ts:43
getThemes
▸ getThemes(): IColorTheme
[]
Get all themes in colorThemes
Returns
Defined in
src/services/theme/colorThemeService.ts:38
reload
▸ reload(): void
Reload current theme
Returns
void
Defined in
src/services/theme/colorThemeService.ts:51
reset
▸ reset(): void
Reset theme
Returns
void
Defined in
src/services/theme/colorThemeService.ts:55
setTheme
▸ setTheme(id
): void
Set the current Color Theme via id,
Please ensure the theme could be found in colorThemes
Parameters
Name | Type | Description |
---|---|---|
id | string | The id is required |
Returns
void
Defined in
src/services/theme/colorThemeService.ts:29
updateTheme
▸ updateTheme(theme
): void
Update specific theme,
Parameters
Name | Type | Description |
---|---|---|
theme | IColorTheme | The id is required in theme |
Returns
void