quinzo
quinzo

Reputation: 689

Change font color inside input or textarea

I want the following text inside the input field to be white as shown in the picture below:

here the picture

And here is the code:


<v-flex xs12 sm6 md3>
   <v-text-field color="white" label="Name" style="">
   </v-text-field>
</v-flex>

Upvotes: 2

Views: 2389

Answers (1)

Hemant Parashar
Hemant Parashar

Reputation: 3774

You can override the default css

.theme--light.v-input:not(.v-input--is-disabled) input{
  color:#fff;
}

Upvotes: 3

Related Questions