When designing an application, I've chosen to have a black background for one of the pages. However, when users type in the input box, their text ends up being black as well, making it invisible.
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-pink.min.css">
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
</head>
<body>
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<input class="mdl-textfield__input" type="text" name="Username"/>
<label class="mdl-textfield__label" style="color:#b272a9;" for="Username">Username</label>
</div>
</body>
Is there a way to change the color of the input text in Material Design Lite (MDL)?