This will change the colour of all placeholder text in the app. Placeholder text is text that appears in unfilled text based fields.
Important notes to make this code work:
- You will need to change the color of your app (in branding) to a darker tone of the finalized and flattened app color.
- Change the bolded text in the code to be applicable for your app (colour codes, links to images, etc) You can use this site to help you select the Hex codes for your colours: http://www.colorpicker.com/
Code:
/*Change color of place holder text*/
::-webkit-input-placeholder {
color: #00ff37;
}
Comments
Article is closed for comments.