-
Notifications
You must be signed in to change notification settings - Fork 2
Color
Viames Marino edited this page Feb 26, 2026
·
2 revisions
Pair\Html\FormControls\Color renders <input type="color">.
render(): string- Inherited methods from FormControl:
value(),id(),class(),title(),required(),disabled(),readonly().
$color = (new \Pair\Html\FormControls\Color('themeColor'))
->value('#0ea5e9')
->title('Primary theme color');
echo $color->render();HTML color input expects hex-like values (#RRGGBB).
See also: FormControl, Text.