This repository has been archived on 2021-10-26. You can view files and clone it, but cannot push or open issues or pull requests.
biofriction-web/biofriction-theme/library/gutenberg.php

39 lines
1.2 KiB
PHP

<?php
if ( ! function_exists( 'foundationpress_gutenberg_support' ) ) :
function foundationpress_gutenberg_support() {
// Add foundation color palette to the editor
// add_theme_support( 'editor-color-palette', array(
// array(
// 'name' => __( 'Primary Color', 'foundationpress' ),
// 'slug' => 'primary',
// 'color' => '#1779ba',
// ),
// array(
// 'name' => __( 'Secondary Color', 'foundationpress' ),
// 'slug' => 'secondary',
// 'color' => '#767676',
// ),
// array(
// 'name' => __( 'Success Color', 'foundationpress' ),
// 'slug' => 'success',
// 'color' => '#3adb76',
// ),
// array(
// 'name' => __( 'Warning color', 'foundationpress' ),
// 'slug' => 'warning',
// 'color' => '#ffae00',
// ),
// array(
// 'name' => __( 'Alert color', 'foundationpress' ),
// 'slug' => 'alert',
// 'color' => '#cc4b37',
// )
// ) );
}
add_action( 'after_setup_theme', 'foundationpress_gutenberg_support' );
endif;