Make WordPress Core

Changeset 62230


Ignore:
Timestamp:
04/14/2026 10:12:12 AM (5 months ago)
Author:
wildworks
Message:

Upgrade/Install: Use new default admin color scheme for links on the setup screen.

This changeset updates the link colors on the setup screen and the default wp_die() fallback styles to use the new default admin color scheme.

Props audrasjb, darshitrajyaguru97, dhrumilk, hbhalodia, huzaifaalmesbah, ismail0071, mikinc860, pooja-n, shailu25, sumitsingh, vishitshah, wildworks
Fixes #64962. See #64308.

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/css/install.css

    r62163 r62230  
    1717
    1818a {
    19         color: #2271b1;
     19        color: var(--wp-admin-theme-color);
    2020}
    2121
    2222a:hover,
    2323a:active {
    24         color: #135e96;
     24        color: var(--wp-admin-theme-color-darker-20);
    2525}
    2626
    2727a:focus {
    28         color: #043959;
     28        color: var(--wp-admin-theme-color-darker-20);
    2929        border-radius: 2px;
    3030        box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9);
  • trunk/src/wp-includes/functions.php

    r62178 r62230  
    39763976                }
    39773977                a {
    3978                         color: #2271b1;
     3978                        color: #3858e9;
    39793979                }
    39803980                a:hover,
    39813981                a:active {
    3982                         color: #135e96;
     3982                        color: #183ad6;
    39833983                }
    39843984                a:focus {
    3985                         color: #043959;
     3985                        color: #183ad6;
    39863986                        box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9);
    39873987                        outline: 2px solid transparent;
Note: See TracChangeset for help on using the changeset viewer.