Make WordPress Core


Ignore:
Timestamp:
07/07/2020 10:09:23 AM (6 years ago)
Author:
afercia
Message:

Accessibility: Improve color contrast for the blue links :hover state.

For a number of years, WordPress has been using a #00a0d2 blue shade for the links :hover state. This blue shade doesn't have a sufficient color contrast with the various (too many) background colors used in the admin interface.

The new #006799 blue shade is part of the official WordPress color palette and does have a sufficient color contrast with most of the admin backgrounds.

Props ryokuhi, audrasjb, joedolson, mapk.
See #47682.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/functions.php

    r48367 r48368  
    34883488        a:hover,
    34893489        a:active {
    3490             color: #00a0d2;
     3490            color: #006799;
    34913491        }
    34923492        a:focus {
Note: See TracChangeset for help on using the changeset viewer.