import { Component, OnInit, OnDestroy } from '@angular/core'; import { ColorSchemeService } from './color-scheme.service'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.sass'] }) export class AppComponent implements OnInit, OnDestroy { title = 'spm-frontend'; constructor(private colorSchemeService: ColorSchemeService) {} ngOnInit() { this.colorSchemeService.init(); } ngOnDestroy() { this.colorSchemeService.destroy(); } }