16

How do I change md-input-container placeholder color using css in Angular Material? As screenshot below I have phone no. and password textfield. Phone no. textfield has Phone No. and password has Password placeholder name.

enter image description here

peterh
  • 11,875
  • 18
  • 85
  • 108
digit
  • 4,479
  • 3
  • 24
  • 43

7 Answers7

29

in the last version of angular you can remove the placeholder in the input and add a mat-placeholder in the mat-form-field and custom the css with a class

html :

<mat-form-field>
    <input matInput type="text">
    <mat-placeholder class="placeholder">Search</mat-placeholder>
</mat-form-field>

css:

.mat-focused .placeholder {
    color: #00D318;
}
Wenakari
  • 688
  • 7
  • 6
  • 1
    Awesome solution ! – FAISAL Jun 26 '18 at 11:20
  • 1
    just: .placeholder { color: #00D318; } worker for me when using your method. Thanks... Great solution ! ✅ ✅ ✅ – PhillipJacobs Sep 10 '18 at 10:44
  • @PhillipJacobs You're welcome! Thanks also because now I know I can use .placeholder directly and not necessarily a custom class ;). – Wenakari Sep 17 '18 at 14:27
  • Note that this only works with form fields of appearance="legacy". For appearance="standard" or the other values, you need to use `input::placeholder`. – Cito Dec 20 '18 at 13:37
  • 3
    is [deprecated](https://material.angular.io/components/form-field/overview#error-placeholder-attribute-and-child-element-were-both-specified) – zeljko_a Feb 02 '20 at 19:26
23

Placeholder is depicted as a <label> in Angular Material. So you actually need to style the label not the placeholder.

As soon as you click (focus) on the input this <label> which is looking as a placeholder slides up and converted into a form <label>.

So you just need to apply this CSS:

/* When the input is not focused */
md-input-container label {
  color: red;
}

/* When the input is focused */
md-input-container.md-input-focused label {
  color: blue;
}

Have a look at this Plunkr Demo.

Saurav Rastogi
  • 9,575
  • 3
  • 29
  • 41
  • 4
    the classes are named the same in Material 2 but this solution isn't working anymore :( – Martin Schneider Jan 21 '17 at 13:58
  • 1
    what if your using md-no-float. In that case you don't use a label.. How would you change the color of that specific placeholder. I got it to change using this `input.box::-webkit-input-placeholder, textarea.box::-webkit-input-placeholder { color: white; }` bur when I click on the input field and theres focus the color changes again – Flash Mar 16 '17 at 21:32
3

In Angular 4+

First you will need to turn ViewEncapsulation off to style Material Elements. Be warned this is subverting the Angular emulated-shadow DOM default and you should proceed with caution (https://blog.thoughtram.io/angular/2015/06/29/shadow-dom-strategies-in-angular2.html).

In dummy.component.ts:

@Component({
 ...,
 encapsulation: ViewEncapsulation.None,
})

Then give your < mat-form-field > element a unique class in dummy.component.html:

<mat-form-field class="dummy-input-field" floatPlaceholder="always">
  <input placeholder="Dummy"/>
</mat-form-field>

Finally in dummy.component.css apply the styling:

.dummy-input-field .mat-input-placeholder {
  color: red;
}

Similarly, if you'd like to dynamically change color if the field is focused:

.dummy-input-field.mat-focused .mat-input-placeholder {
  color: red;
}
2
.container {
  .mat-form-field-outline,
  .mat-form-field-empty.mat-form-field-label,
  .mat-form-field-label,
  .mat-form-field-underline,
  .mat-input-element,
  ::placeholder {
    color: $white !important;
  }
}

The code above gives me the results below. I am overriding the form-field outline, label-empty, label, underline, input element, placeholder text.

I'm using Angular 8.2.2 and Angular Material 8.2.2 image of 3 input fields with all white borders, placeholder text, and labels

MaylorTaylor
  • 4,671
  • 16
  • 47
  • 76
1

For the newer versions of material which have a mat prefix instead of md prefix, you can do this in 2 ways:

way 1: using view encapsulation set to none and then writing the styles in the components css file, like @user2245995 pointed out in the answer above. Although this is the way angular suggests, please be advised that the styles you write here will propagate to all the child/parent components and effect other elements there.

way 2: We can use the shadow piercing descendant combinators i.e. /deep/ or ::ng-deep or >>> Below is an example

/deep/ label.mat-input-placeholder {
  color: #fff;   // choose the color you want
}

Although this method is specified in the angular docs as of now, they have mentioned that this method will soon be deprecated. read more: https://angular.io/guide/component-styles#!#-deep-

rgantla
  • 1,926
  • 10
  • 16
0

I tried to be as deterministic as possible for the color of a mat input and I dare to share the result here, hoping it will help some others (the placeholder color customization need is handled, as asked in the question):

CSS custom properties used

Note: The colors are considered different when the focus is here or not, that is why we have 2 blocs in the following:

    --clear-button-color: lightblue;
    --asterisk-color: lightgreen;
    --label-color: springgreen;
    --underline-color: blue;
    --input-color: lightgray;

    --clear-button-focused-color: blue;
    --asterisk-focused-color: green;
    --label-focused-color: pink;
    --underline-focused-color: yellow;
    --input-focused-color: gray;
    --placeholder-focused-color: magenta;
    --caret-focused-color: blue;

SCSS styling

    .mat-form-field {
        &.mat-focused {
            > .mat-form-field-wrapper {
                > .mat-form-field-flex {
                    > .mat-form-field-infix {
                        > .mat-input-element {
                            color: var(--input-focused-color);
                            caret-color: var(--caret-focused-color);

                            &::placeholder {
                                color: var(--placeholder-focused-color);
                            }
                        }
                        > .mat-form-field-label-wrapper {
                            > .mat-form-field-label {
                                > mat-label {
                                    color: var(--label-focused-color);
                                }

                                > .mat-placeholder-required {
                                    color: var(--asterisk-focused-color);
                                }
                            }
                        }
                    }
                    > .mat-form-field-suffix {
                        > .mat-focus-indicator {
                            > .mat-button-wrapper {
                                > .mat-icon {
                                    color: var(--clear-button-focused-color);
                                }
                            }
                        }
                    }
                }
                > .mat-form-field-underline {
                    > .mat-form-field-ripple {
                        background-color: var(--underline-focused-color);
                    }

                    background-color: var(--underline-focused-color);
                }
            }
        }

        > .mat-form-field-wrapper {
            > .mat-form-field-flex {
                > .mat-form-field-infix {
                    > .mat-input-element {
                        color: var(--input-color);

                        &::placeholder {
                            color: var(--placeholder-color);
                        }
                    }
                    > .mat-form-field-label-wrapper {
                        > .mat-form-field-label {
                            > mat-label {
                                color: var(--label-color);
                            }

                            > .mat-placeholder-required {
                                color: var(--asterisk-color);
                            }
                        }
                    }
                }
                > .mat-form-field-suffix {
                    > .mat-focus-indicator {
                        > .mat-button-wrapper {
                            > .mat-icon {
                                color: var(--clear-button-color);
                            }
                        }
                    }
                }
            }
            > .mat-form-field-underline {
                > .mat-form-field-ripple {
                    background-color: var(--underline-color);
                }

                background-color: var(--underline-color);
            }
        }
    }
Hadrien TOMA
  • 2,375
  • 2
  • 22
  • 32
0
.mat-input-element::-webkit-input-placeholder {
    color: red;
  } 

this is if you use a structure similar with this one:

 <input
  matInput
  [placeholder]="placeholder"
/>
Andrei Chivu
  • 135
  • 2
  • 12