<style>
#username {
color: #DE2A00;
}
</style>
Or you can change the color when the user clicks on the field like this:
<script type=text/javascript src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js'></script>
<script type=text/javascript>
$(document).ready(function() {
$('#username').click(function(){
$(this).css({'color': '#DE2A00'});
});
});
</script>
It depends on what you want, I would look at this link to start playing with some things:
w3schools
and
css-tricks
source
share