# block-editor-colors/trunk/plugin.php

Block Editor Colors, version trunk. 29 lines.

- Page: https://pluginprobe.com/plugins/block-editor-colors/trunk/code/plugin.php
- Raw: https://pluginprobe.com/plugins/block-editor-colors/trunk/raw/plugin.php
- Modified: 2026-06-30T14:41:04+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/block-editor-colors/trunk/code/plugin.php#L10-L20`.

```php
<?php
/**
 * Plugin Name: Block Editor Colors
 * Plugin URI: https://motopress.com/products/block-editor-colors/
 * Description: Change Gutenberg block editor colors or create new ones.
 * Version: 1.2.7
 * Author: MotoPress
 * Author URI: https://motopress.com
 * Text Domain: block-editor-colors
 * Domain Path: /languages/
 */

use BlockEditorColors\BlockEditorColors;

if ( ! defined( 'BEC_PLUGIN_FILE' ) ) {
	define( 'BEC_PLUGIN_FILE', __FILE__ );
	define( 'BEC_PLUGIN_VERSION', '1.2.7' );
}

if ( ! class_exists( 'BlockEditorColors' ) ) {
	require_once dirname( __FILE__ ) . '/includes/BlockEditorColors.php';
}

function BlockEditorColors() {
	return BlockEditorColors::getInstance();
}

BlockEditorColors();

```
