diff --git a/wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-customize.php b/wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-customize.php
index fda1e6e094..1abdd70daf 100644
--- a/wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-customize.php
+++ b/wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-customize.php
@@ -140,7 +140,7 @@ if ( ! class_exists( 'Twenty_Twenty_One_Customize' ) ) {
$wp_customize,
'background_color',
array(
- 'label' => esc_html_x( 'Background Color', 'Customizer control', 'twentytwentyone' ),
+ 'label' => esc_html_x( 'Background color', 'Customizer control', 'twentytwentyone' ),
'section' => 'colors',
'palette' => $colors,
)
diff --git a/wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-dark-mode.php b/wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-dark-mode.php
index 959c80dd6f..68d120f827 100644
--- a/wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-dark-mode.php
+++ b/wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-dark-mode.php
@@ -165,8 +165,8 @@ class Twenty_Twenty_One_Dark_Mode {
array(
'type' => 'checkbox',
'section' => 'colors',
- 'label' => esc_html__( 'Dark Mode Support', 'twentytwentyone' ),
- 'description' => __( 'Respect visitor\'s device dark mode settings.
Dark mode is a device setting. If a visitor to your site requests it, your site will be shown with a dark background and light text.
Dark Mode can also be turned on and off with a button that you can find in the bottom right corner of the page.', 'twentytwentyone' ),
+ 'label' => esc_html__( 'Dark Mode support', 'twentytwentyone' ),
+ 'description' => __( 'Respect visitor’s device dark mode settings.
Dark mode is a device setting. If a visitor to your site requests it, your site will be shown with a dark background and light text.
Dark Mode can also be turned on and off with a button that you can find in the bottom right corner of the page.', 'twentytwentyone' ),
'active_callback' => function( $value ) {
return 127 < Twenty_Twenty_One_Custom_Colors::get_relative_luminance_from_hex( get_theme_mod( 'background_color', 'D1E4DD' ) );
},
@@ -402,7 +402,7 @@ class Twenty_Twenty_One_Dark_Mode {
return;
}
$content = '
' . __( 'Twenty Twenty-One uses LocalStorage when Dark Mode support is enabled.', 'twentytwentyone' ) . '
' - . '' . __( 'Suggested Text:', 'twentytwentyone' ) . ' ' + . '' . __( 'Suggested text:', 'twentytwentyone' ) . ' ' . __( 'This website uses LocalStorage to save the setting when Dark Mode support is turned on or off.