=== Improve Accessibility - Dark Mode Switcher ===
Contributors: ermaldbilla
Tags: dark mode, accessibility, theme switcher, dark theme, light mode
Requires at least: 5.8
Tested up to: 6.8
Requires PHP: 7.4
Stable tag: 1.0.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

A secure WordPress plugin to add a universal dark/light mode toggle with localStorage support.

== Description ==

Improve Accessibility - Dark Mode Switcher for WP adds a professional dark/light mode toggle to your WordPress website.

**Features:**

* Universal dark/light mode toggle
* localStorage support for user preferences
* Modern responsive design
* Full WordPress security implementation
* JavaScript API for developers
* Mobile-friendly
* Translation-ready

**Security:**

The plugin implements all WordPress security standards including nonces, sanitization, escape output, and permission checks.

**Developer API:**
```javascript
// Get current theme
window.iadsAPI.getTheme();

// Change theme
window.iadsAPI.setTheme('dark');

// Toggle theme
window.iadsAPI.toggleTheme();