import { DaffThemingService } from '@daffodil/design'
A service for controlling the application's theme.
@Injectable()
class DaffThemingService {
getTheme(): Observable<DaffTheme>
darkMode(): void
lightMode(): void
switchTheme(): void
}
Observable<DaffTheme>Get the current theme.
voidSet the theme to dark mode.
voidSet the theme to light mode.
voidSwitch between themes.