mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 05:16:07 +00:00
18 lines
195 B
TypeScript
18 lines
195 B
TypeScript
|
|
import { Injectable } from '@angular/core';
|
||
|
|
|
||
|
|
@Injectable({
|
||
|
|
providedIn: 'root'
|
||
|
|
})
|
||
|
|
export class ThemeService {
|
||
|
|
|
||
|
|
themes = [
|
||
|
|
'gov',
|
||
|
|
'default'
|
||
|
|
]
|
||
|
|
|
||
|
|
constructor() { }
|
||
|
|
|
||
|
|
setTheme() {}
|
||
|
|
|
||
|
|
}
|