how to select all buttons on css?

Hi, i have many buttons on my application, how can i select all these buttons and change their background color and more? i only know addStyleName() function to identify the button which selects only 1 button. Thank you.

you can do it using css in your scss file

.v-button {
background-color: your color;
}