Update: Environment for Heroku Production
This commit is contained in:
parent
b7df19e1c0
commit
0d6cca625c
136 changed files with 35 additions and 2784 deletions
17
src/app/utils/theme/theme.service.ts
Normal file
17
src/app/utils/theme/theme.service.ts
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import { Injectable } from '@angular/core';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root'
|
||||
})
|
||||
export class ThemeService
|
||||
{
|
||||
|
||||
isLightTheme = true;
|
||||
|
||||
getClassTheme(): string
|
||||
{
|
||||
if(this.isLightTheme) return "lightTheme" ;
|
||||
else return "darkTheme"
|
||||
}
|
||||
|
||||
}
|
||||
Reference in a new issue