Make placeholder text black
How can I make my input placeholder text to be black?
5 Replies
by applying style
1) Sounds like a bad pattern that will confuse your users
2) Create a custom theme and add the required CSS
how can I apply the custom style only in one of my input
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
thanks for your anwer, i'll try that..