Skip to main content
Version: 3.0

Color picker

Overview

The color picker component allows you to pick a color in a range of formats.

By default, the component uses HEX format:

use Filament\Forms\Components\ColorPicker;

ColorPicker::make('color')
Color picker

Setting the color format

While HEX format is used by default, you can choose which color format to use:

use Filament\Forms\Components\ColorPicker;

ColorPicker::make('hsl_color')
->hsl()

ColorPicker::make('rgb_color')
->rgb()

ColorPicker::make('rgba_color')
->rgba()