F
Filament2w ago
dyo

Make placeholder text black

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