https://github.com/Log1x/acf-editor-palette
A Gutenberg-like editor palette color picker field for Advanced Custom Fields.
https://github.com/Log1x/acf-editor-palette
acf-field gutenberg wordpress wordpress-plugin
Last synced: about 6 hours ago
JSON representation
A Gutenberg-like editor palette color picker field for Advanced Custom Fields.
- Host: GitHub
- URL: https://github.com/Log1x/acf-editor-palette
- Owner: Log1x
- License: mit
- Created: 2020-12-16T01:49:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-02-28T16:15:31.000Z (2 months ago)
- Last Synced: 2025-04-19T05:11:11.202Z (21 days ago)
- Topics: acf-field, gutenberg, wordpress, wordpress-plugin
- Language: PHP
- Homepage: https://github.com/Log1x/acf-editor-palette
- Size: 462 KB
- Stars: 96
- Watchers: 8
- Forks: 16
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
# ACF Editor Palette


A Gutenberg-like editor palette color picker field for Advanced Custom Fields.

## Features
- Colors are automatically loaded from `theme.json` and/or the editor palette.
- Return format includes the default [palette keys](https://developer.wordpress.org/block-editor/developers/themes/theme-support/) as well as background and text color classes for convenience.
- Default value can optionally be set using the color's slug.
- Colors can optionally be allowed/excluded from the palette.## Requirements
- [PHP](https://secure.php.net/manual/en/install.php) >= 7.2
- [ACF PRO](https://www.advancedcustomfields.com/pro/) >= 5.0## Installation
### Bedrock
Install via Composer:
```bash
$ composer require log1x/acf-editor-palette
```### Manual
Download the [latest release](https://github.com/Log1x/acf-editor-palette/releases/latest) `.zip` and install into `wp-content/plugins`.
## Usage

```php
^ array:5 [▼
"name" => "Green (500)"
"slug" => "green-500"
"color" => "#0e9f6e"
"text" => "has-text-color has-green-500-color"
"background" => "has-background has-green-500-background-color"
]
```### ACF Composer
If you are on Sage 10 and using my [ACF Composer](https://github.com/log1x/acf-composer) package:
```php
$field
->addField('my_color_field', 'editor_palette')
->setConfig('default_value', 'green-500')
->setConfig('allowed_colors', ['green-500', 'blue-500'])
->setConfig('exclude_colors', ['green-50', 'green-100'])
->setConfig('return_format', 'slug');
```## Bug Reports
If you discover a bug in ACF Editor Palette, please [open an issue](https://github.com/log1x/acf-editor-palette/issues).
## Contributing
Contributing whether it be through PRs, reporting an issue, or suggesting an idea is encouraged and appreciated.
## License
ACF Editor Palette is provided under the [MIT License](LICENSE.md).