F
Filament9mo ago
dyo

Make placeholder text black

How can I make my input placeholder text to be black?
5 Replies
krekas
krekas9mo ago
by applying style
Dennis Koch
Dennis Koch9mo ago
1) Sounds like a bad pattern that will confuse your users 2) Create a custom theme and add the required CSS
dyo
dyoOP9mo ago
how can I apply the custom style only in one of my input
igmltd
igmltd9mo ago
You can pass extra HTML attributes to a field - something like this: TextInput::make('field') ->extraFieldWrapperAttributes(['class' => 'placeholder-text-colour']) https://filamentphp.com/docs/3.x/forms/fields/getting-started#adding-extra-html-attributes
dyo
dyoOP9mo ago
thanks for your anwer, i'll try that..

Did you find this page helpful?