import { Component, OnInit } from '@angular/core'; import { rootDefaultService } from '../service/root.service'; @Component({ selector: 'app-root', templateUrl: './root-default.component.html', styleUrls: ['./root-default.component.css'] }) export class RootDefaultComponent implements OnInit { selectedTheme: any; constructor(private rootDefaultService: rootDefaultService) { } ngOnInit() { this.selectedTheme = this.rootDefaultService.getTheme(); this.rootDefaultService.OnChangeTheme.subscribe(themeName=>{ this.selectedTheme = themeName; }); } }