Skip to content

Commit 8f795a5

Browse files
Merge #585
585: Update enableDarkMode to auto in playground r=bidoubiwa a=mdubus ## Problem `enableDarkMode` is still in `true`, causing the dark mode to be displayed even if the system is in light mode. ## Solution Set `enableDarkMode` to `auto` to let the system decide which theme to display Co-authored-by: Morgane Dubus <[email protected]>
2 parents a0c6aec + 77bbd39 commit 8f795a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

playgrounds/html/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
},
3535
debug: true, // Set debug to true if you want to inspect the dropdown
3636
enhancedSearchInput: true,
37-
enableDarkMode: true
37+
enableDarkMode: 'auto'
3838
})
3939
</script>
4040
<style>

0 commit comments

Comments
 (0)