import { Component } from '@angular/core'; import { NgaThemeService } from '@akveo/nga-theme'; @Component({ selector: 'ngx-temperature', styleUrls: ['./temperature.component.scss'], template: ` Content #2 `, }) export class TemperatureComponent { temperature = 0.5; themeConfig = {}; constructor(private theme: NgaThemeService) { this.theme.getConfig().subscribe((config) => { this.themeConfig = config; }); } }