Components: How to change the color of my mdInput?

Created on 6 Mar 2017  路  9Comments  路  Source: angular/components

Well... I'm using mdInput and I don't know how to change the color of the input. Look this picture:

divider-colors

How to put a blue, red, yellow color?

Do I need to use CSS? And how to make my html recognize the css file and component

Most helpful comment

.mat-focused .mat-form-field-label {
color: #5cb53f !important;
}

.mat-form-field-ripple {
background-color: #5cb53f !important;
}

All 9 comments

@lukecorf , there are 3 types of colors: primary, accent or warn

<md-input-container dividerColor="primary">
   ...
</md-input-conainer>

@diicar , thanks but I have a problem look this. In the other applications I created the md Input was colored. But now he is black as in the image below. Can I forget to import something?

untitled

Getting started for material design: https://material.angular.io/guides

@lukecorf please consider using stackoverflow for this type of questions: http://stackoverflow.com/search?q=material2

It seems like you might be missing the Material theme. Please keep GitHub issues for bug reports / feature requests. Better avenues for troubleshooting / questions are stack overflow, gitter, mailing list, etc.

Wondering the same as the OP. I understand we can style based on the themes via the color directive, but what if I just want a white input?

.mat-focused .mat-form-field-label {
color: #5cb53f !important;
}

.mat-form-field-ripple {
background-color: #5cb53f !important;
}

.mat-focused .mat-form-field-label {
color: #5cb53f !important;
}

.mat-form-field-ripple {
background-color: #5cb53f !important;
}

Thank you

This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.

Read more about our automatic conversation locking policy.

_This action has been performed automatically by a bot._

Was this page helpful?
0 / 5 - 0 ratings

Related issues

alaawerfelli picture alaawerfelli  路  148Comments

maku picture maku  路  59Comments

jmcgoldrick picture jmcgoldrick  路  59Comments

MariovanZeist picture MariovanZeist  路  59Comments

anderflash picture anderflash  路  59Comments