This Laravel Nova package adds a color picker to Nova's arsenal of fields.
php: >=8.0laravel/nova: ^4.0
A simple Nova Color field utilizing vue-color.
Forked from timothyasp/nova-color-field and brought up to date with improvements.
Install the package in to a Laravel app that uses Nova via composer:
composer require outl1ne/nova-color-fielduse Outl1ne\NovaColorField\Color;
public function fields(Request $request) {
Color::make('Color'),
}Available themes: chrome, compactTheme, grayscale, material, photoshop, sketch, slider, swatches, twitter.
See the theme demos here.
use Outl1ne\NovaColorField\Color;
public function fields(Request $request) {
Color::make('Color')->photoshop(),
Color::make('Color')->swatches(),
// ...
}If you would like to display and save the color in a format other than hex, you can use the ->displayAs('hex') and ->saveAs('hex') helpers.
Available options are: rgb, rgba, hex, hex8, hsl.
Color::make('Color')
->chrome()
->displayAs('hex8')
->saveAs('hex8'),Adding custom pallette colors to the pickers can be done like so:
Color::make('Color')
->compactTheme()
->palette(['#beaf00', '#DEADAF', '#000']),Nova Color Field is open-sourced software licensed under the MIT license.

