Skip to content

Commit

Permalink
Admin Color Scheme: Update the highlight color in the Modern color sc…
Browse files Browse the repository at this point in the history
…heme.

In the Modern color scheme, the font color on hover in the admin bar is bright green. However, in the WordPress.org site itself, the color used is Blueberry 2. This commits aligns both colors on the more balanced Blueberry color.

Props fushar, Joen.
Fixes #62219.

git-svn-id: https://develop.svn.wordpress.org/trunk@59419 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
youknowriad committed Nov 19, 2024
1 parent dec5c90 commit 11e4c7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/wp-admin/css/colors/modern/colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
$scheme-name: "modern";
$base-color: #1e1e1e;
$highlight-color: #3858e9;
$menu-submenu-focus-text: #33f078;
$menu-submenu-focus-text: #7b90ff;
$notification-color: $highlight-color;

$link: $highlight-color;
Expand Down
2 changes: 1 addition & 1 deletion src/wp-includes/general-template.php
Original file line number Diff line number Diff line change
Expand Up @@ -4762,7 +4762,7 @@ function register_admin_color_schemes() {
'modern',
_x( 'Modern', 'admin color scheme' ),
admin_url( "css/colors/modern/colors$suffix.css" ),
array( '#1e1e1e', '#3858e9', '#33f078' ),
array( '#1e1e1e', '#3858e9', '#7b90ff' ),
array(
'base' => '#f3f1f1',
'focus' => '#fff',
Expand Down

0 comments on commit 11e4c7c

Please sign in to comment.