// Check if the browser theme is dark
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
// Dark theme is enabled
console.log('Dark theme is enabled');
} else {
// Light theme is enabled (or the browser doesn't support theme detection)
console.log('Light theme is enabled');
}
check users default browser theme in js