// into functions.php
add_theme_support( 'disable-custom-colors' );
// into functions.php
add_theme_support( 'editor-color-palette', array(
array(
'name' => __( 'Color prime', 'snippress' ),
'slug' => 'color-prime',
'color' => '#535353',
),
array(
'name' => __( 'Color second', 'snippress' ),
'slug' => 'color-second',
'color' => '#2a3f89',
),
array(
'name' => __( 'Color accent', 'snippress' ),
'slug' => 'color-accent',
'color' => '#EF1851',
),
) );
}
// into functions.php
add_theme_support( 'editor-font-sizes', array(
array(
'name' => __( 'Small', 'snippress' ),
'shortName' => __( 'S', 'snippress' ),
'size' => 12,
'slug' => 'small'
),
array(
'name' => __( 'Normal', 'snippress' ),
'shortName' => __( 'M', 'snippress' ),
'size' => 16,
'slug' => 'normal'
),
array(
'name' => __( 'Large', 'snippress' ),
'shortName' => __( 'L', 'snippress' ),
'size' => 24,
'slug' => 'large'
),
) );
// into functions.php
add_theme_support( 'editor-styles' );
add_editor_style( 'assets/css/main-editor.min.css' );