@sheyxneo/angular-material-theme-switcher
Version:
This library will help you to use multiple themes and easily switch between them in your project.
12 lines (11 loc) • 394 B
TypeScript
import { OnInit } from '@angular/core';
import { AmThemeService } from '../../service/am-theme.service';
export declare class ColorSwitcherComponent implements OnInit {
private amThemeService;
colorTheme: string;
themes: string[];
isUseLibraryThemes: boolean;
constructor(amThemeService: AmThemeService);
ngOnInit(): void;
setColorTheme(colorTheme: string): void;
}