/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

/*-----------------------------------------------------------------------------------------------*/
/*--------Integrating with the Parrent Theme-------*/
add_action( 'wp_enqueue_scripts', function () {
	wp_enqueue_style('blocksy-child-style', get_stylesheet_uri());
});

/*-----------------------------------------------------------------------------------------------*/
/*--------Add custom colours to the Gutenberg editor-------*/
.has-custom-color-1 {
 color: #f78ae0 !important;
}

.has-custom-color-2 {
 color: #b0f566 !important;
}

