fix(theme): use p-dark as PrimeNG darkModeSelector to prevent fallback to light styles

This commit is contained in:
Ruhan Monte
2025-04-15 13:41:29 -03:00
committed by Aditya Chandel
parent 6a0b3a5814
commit 8e0aea6fcd

View File

@@ -11,8 +11,8 @@ import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import Aura from '@primeng/themes/aura';
import { routes } from './app/app.routes';
import {AuthInterceptorService} from './app/auth-interceptor.service';
import {AuthService} from './app/core/service/auth.service';
import { AuthInterceptorService } from './app/auth-interceptor.service';
import { AuthService } from './app/core/service/auth.service';
bootstrapApplication(AppComponent, {
providers: [
@@ -33,7 +33,10 @@ bootstrapApplication(AppComponent, {
provideAnimationsAsync(),
providePrimeNG({
theme: {
preset: Aura
preset: Aura,
options: {
darkModeSelector: '.p-dark'
}
}
})
]