Ticket #46698: 46698.patch
| File 46698.patch, 1.0 KB (added by , 6 years ago) |
|---|
-
src/wp-content/themes/twentynineteen/functions.php
143 143 'editor-color-palette', 144 144 array( 145 145 array( 146 'name' => __( 'Primary', 'twentynineteen' ),146 'name' => 'default' === get_theme_mod( 'primary_color' ) ? __( 'Blue', 'twentynineteen' ) : null, 147 147 'slug' => 'primary', 148 148 'color' => twentynineteen_hsl_hex( 'default' === get_theme_mod( 'primary_color' ) ? 199 : get_theme_mod( 'primary_color_hue', 199 ), 100, 33 ), 149 149 ), 150 150 array( 151 'name' => __( 'Secondary', 'twentynineteen' ),151 'name' => 'default' === get_theme_mod( 'primary_color' ) ? __( 'Dark Blue', 'twentynineteen' ) : null, 152 152 'slug' => 'secondary', 153 153 'color' => twentynineteen_hsl_hex( 'default' === get_theme_mod( 'primary_color' ) ? 199 : get_theme_mod( 'primary_color_hue', 199 ), 100, 23 ), 154 154 ),