esc_html__( 'Dark Gray', 'antreas' ), 'slug' => 'dark-gray', 'color' => '#333333', ), array( 'name' => esc_html__( 'Gray', 'antreas' ), 'slug' => 'gray', 'color' => '#7b7d7f', ), array( 'name' => esc_html__( 'Primary Color', 'antreas' ), 'slug' => 'primary', 'color' => '#22c0e3', ), array( 'name' => esc_html__( 'Secondary Color', 'antreas' ), 'slug' => 'secondary', 'color' => '#424247', ), ) ); add_theme_support( 'align-wide' ); add_theme_support( 'wp-block-styles' ); } add_action( 'after_setup_theme', 'antreas_gutenberg_theme_support' ); /** * Enqueue Gutenberg editor style. */ function antreas_block_editor_styles() { wp_enqueue_style( 'antreas-style-editor', get_theme_file_uri( '/core/css/style-editor.css' ), false, ANTREAS_VERSION, 'all' ); } //add_action( 'enqueue_block_editor_assets', 'antreas_block_editor_styles' );