• thiagovelx

    (@thiagovelx)


    After updating to WordPress 7.0, existing users who had never manually changed their admin color scheme are now seeing the new “Modern” color scheme by default.

    I understand that Modern may be intended as the new visual direction for WordPress, and I am not asking for it to be removed. However, automatically applying it to existing users creates a visual regression in many real-world admin dashboards.

    The new blue used in links, buttons and interface elements is much more saturated and visually aggressive than the previous Fresh/default scheme. In client-managed sites, this makes the admin area feel unexpectedly different after a routine update, even though the client never opted into a new visual style.

    This is especially problematic for agencies, developers and site maintainers who provide customized or conservative admin experiences. A WordPress update should not suddenly change the visual tone of the dashboard for existing users who did not explicitly choose a new palette.

    My suggestion for WordPress 7.0.1:

    1. Restore “Fresh” as the default/fallback admin color scheme for existing users.
    2. Keep “Modern” available as an option.
    3. If desired, use “Modern” only for new installations or users who explicitly opt in.
    4. Avoid migrating users automatically when WordPress cannot know whether they intentionally wanted the previous default appearance.

    This would preserve backward compatibility and user trust while still allowing WordPress to evolve its visual design.

Viewing 10 replies - 1 through 10 (of 10 total)
  • Moderator threadi

    (@threadi)

    If you’d like to see changes made here, it’s best to submit a request on Core Trac. I haven’t been able to find anyone else there yet who has requested the same thing: https://core.trac.wordpress.org/newticket

    Halil

    (@halilesen)

    I agree. I was shocked when I logged into wp-admin just a moment ago. Disgraceful! And AI? Nope, I don’t want that. If WP didn’t update automatically, I probably wouldn’t have updated it on my own.

    Thread Starter thiagovelx

    (@thiagovelx)

    Thanks for the guidance. I created a Core Trac ticket here:

    https://core.trac.wordpress.org/ticket/65304

    The main concern is not removing Modern, but avoiding the automatic change for existing users who never explicitly opted into the new admin color scheme.

    Thread Starter thiagovelx

    (@thiagovelx)

    Hi,

    I created a Core Trac ticket as suggested, but it was closed as wontfix because the new default is intentional:

    https://core.trac.wordpress.org/ticket/65304

    I understand that the WordPress admin will continue to evolve over time. My concern was mainly about existing users who never explicitly opted into a new admin color scheme suddenly seeing a significantly different visual style after a routine update.

    Since this is considered intentional, I will handle it on my side for client-managed projects. From now on, I will add and recommend adding a small MU plugin or project-level rule to force the admin color scheme back to fresh where visual consistency and a more conservative dashboard experience are required.

    That said, I still believe this kind of automatic visual change can affect perceived product stability and trust for non-technical clients, even when the change is technically intentional.

    Halil

    (@halilesen)

    A solution that can be added to the functions file:

    add_filter('admin_init', function () {
    global $_wp_admin_css_colors;

    $keep = 'fresh';

    foreach ($_wp_admin_css_colors as $key => $scheme) {
    if ($key !== $keep) {
    unset($_wp_admin_css_colors[$key]);
    }
    }
    });

    +1

    I agree. 7.0 was shocked when I logged into wp-admin just a moment ago. Disgraceful! And AI? Nope, I don’t want that. If WP didn’t update automatically, I probably wouldn’t have updated it on my own.

    Totally agree with “thiagovelx”.
    This color is distracting, and we should have the choice whether to apply it or not.

    Halil (@halilesen)

    So the old styling is still in the code, and to disable it, do I have to add a filter everywhere to all client sites?

    CPX

    (@centralplexus)

    WordPress is getting absolutely ridiculous. We’ve dropped support for new projects a while back and never looked back 🙂

    Miikka

    (@miikkamakela)

    I strongly agree. This change is disruptive for existing sites, especially client-managed ones where visual consistency matters.

    Modern can exist as an option, but forcing it on existing users without opt-in creates unnecessary confusion. Please provide a clear way to keep the previous admin color scheme and disable or reduce the new interface animations without requiring custom code on every site.

    @mattmullenwegwtf

    • This reply was modified 2 weeks ago by Miikka.
Viewing 10 replies - 1 through 10 (of 10 total)

You must be logged in to reply to this topic.