How to change placeholder color

{ // deep_execution_view
const authorName = "Ankit Agrawal";
//
const publishDate = "January 22, 2016";
<style>
::-webkit-input-placeholder { 
    color:#000;
}
:-moz-placeholder {
   color:#000;
   opacity:  1;
}
::-moz-placeholder {
   color:#000;
   opacity:  1;
}
:-ms-input-placeholder { 
   color:#000;
}
</style>
}