Commit e552161897 for wordpress.org

commit e55216189747d4bced85e1acebec75315b318159
Author: joedolson <joedolson@git.wordpress.org>
Date:   Tue Jan 27 00:09:34 2026 +0000

    Twenty Twenty-Five: A11y: Fix color contrast in Written By pattern.

    Remove the text color setting on the Written by pattern. The setting was resulting in color contrast that was well below contrast guidelines. Allow the text color to be inherited by default.

    Props poena, rinkalpagdar, narenin, sabernhardt, noruzzaman, huzaifaalmesbah, joedolson.
    Fixes #62982.
    Built from https://develop.svn.wordpress.org/trunk@61534


    git-svn-id: http://core.svn.wordpress.org/trunk@60845 1a063a9b-81f0-0310-95a4-ce76da25c4cd

diff --git a/wp-content/themes/twentytwentyfive/patterns/hidden-written-by.php b/wp-content/themes/twentytwentyfive/patterns/hidden-written-by.php
index a8ffce6471..401cf8638e 100644
--- a/wp-content/themes/twentytwentyfive/patterns/hidden-written-by.php
+++ b/wp-content/themes/twentytwentyfive/patterns/hidden-written-by.php
@@ -10,8 +10,8 @@
  */

 ?>
-<!-- wp:group {"style":{"spacing":{"blockGap":"0.2em","margin":{"bottom":"var:preset|spacing|60"}}},"textColor":"accent-4","fontSize":"small","layout":{"type":"flex","flexWrap":"wrap"}} -->
-<div class="wp-block-group has-accent-4-color has-text-color has-link-color has-small-font-size" style="margin-bottom:var(--wp--preset--spacing--60)">
+<!-- wp:group {"style":{"spacing":{"blockGap":"0.2em","margin":{"bottom":"var:preset|spacing|60"}}},"fontSize":"small","layout":{"type":"flex","flexWrap":"wrap"}} -->
+<div class="wp-block-group has-small-font-size" style="margin-bottom:var(--wp--preset--spacing--60)">
 	<!-- wp:paragraph -->
 	<p><?php esc_html_e( 'Written by ', 'twentytwentyfive' ); ?></p>
 	<!-- /wp:paragraph -->
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 2b3fcadfd5..d564f66b23 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.0-alpha-61532';
+$wp_version = '7.0-alpha-61534';

 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.