diff --git a/apps/showcase/doc/theming/styled/DarkModeDoc.vue b/apps/showcase/doc/theming/styled/DarkModeDoc.vue index e8dbcb879..3b64ebb6d 100644 --- a/apps/showcase/doc/theming/styled/DarkModeDoc.vue +++ b/apps/showcase/doc/theming/styled/DarkModeDoc.vue @@ -2,7 +2,7 @@

PrimeVue uses the system as the default darkModeSelector in theme configuration. If you have a dark mode switch in your application, set the darkModeSelector to the selector you utilize such as .my-app-dark so - that PrimeVue can fit in seamlessly with your light-dark toggle. + that PrimeVue can fit in seamlessly with your color scheme.

@@ -12,6 +12,9 @@

In case you prefer to use dark mode all the time, apply the darkModeSelector initially and never change it.

+ +

It is also possible to disable dark mode completely using false or none as the value of the selector.

+
@@ -45,8 +48,22 @@ app.use(PrimeVue, { code3: { basic: ` function toggleDarkMode() { - const element = document.querySelector('html'); - element.classList.toggle('my-app-dark'); + document.documentElement.classList.toggle('my-app-dark'); +} +` + }, + code4: { + basic: ` + +` + }, + code5: { + basic: ` +theme: { + preset: Aura, + options: { + darkModeSelector: false || 'none', + } } ` }