Easily Update the Gutenberg Color Palette to reflect your site’s color scheme!
Simply add the following to your functions.php file and away you go!
add_theme_support( 'editor-color-palette', array( array( 'name' => __( 'Navy', 'my-site' ), 'slug' => 'navy', 'color' => '#0c3954', ), array( 'name' => __( 'Gold', 'my-site' ), 'slug' => 'gold', 'color' => '#fdbc1d', ), array( 'name' => __( 'White', 'my-site' ), 'slug' => 'white', 'color' => '#ffffff', ), array( 'name' => __( 'Black', 'my-site' ), 'slug' => 'black', 'color' => '#000000', ), ) );