function my_filter_theme_json_theme( $theme_json ) { $new_data = array( 'version' => 2, 'settings' => array( 'color' => array( 'palette' => array( /* New palette */ array( 'slug' => ‘travel-pink’, 'color' => '#ff058d', 'name' => __( ’Travel Pink’ ), ), ), ), ), ); return $theme_json->update_with( $new_data ); } add_filter( 'wp_theme_json_data_theme', 'my_filter_theme_json_theme' );