Search code examples
cssplaceholderbulmabuefy

How can I change the bulma placeholder color?


I need to change the color of the bulma CSS placeholder. I can use the code below for placeholders of normal input that is not bulma,

::-webkit-input-placeholder {
  color: blue !important;
}

but it doesnt work on buefy input field that is powered with bulma. I want you to know I have already setup sass for bulma editing and it works fine, but I dont know the placeholder of input field class to toggle it.


Solution

  • alright, found it:

    $input-placeholder-color:
    

    you can just change that in your sass editing file!