Changelog
=========

All notable changes to Restore Old Admin Colors are documented here.
This project adheres to Semantic Versioning (https://semver.org/).

1.0.0
-----
Initial release.

* Hooks into `user_register` to assign the classic "Fresh" admin color
  scheme to newly registered users.
* Hooks into `admin_init` to migrate the current logged-in user from the
  WordPress 7.0 "Modern" default (or no preference) back to "Fresh"
  exactly once. A one-shot per-user flag (`_roac_restored`) guarantees
  the migration never overrides explicit user choices made afterwards.
* Hooks into `register_deactivation_hook` to revert every migrated user
  back to "Modern" — only if they are still on "Fresh" — and remove the
  plugin's user metadata, leaving zero leftover state.
* Custom user-selected schemes (Light, Blue, Midnight, Ocean, Coffee,
  Ectoplasm, Sunrise, etc.) are preserved at every step.
* Code organised across `restore-old-admin-colors.php` (bootstrap),
  `includes/migrate.php` (registration & restore hooks), and
  `includes/cleanup.php` (deactivation revert).
