Hello @jasonrjohnston
I think that the following CSS code will help you to customize the colors of the Gutenberg buttons:
wp-block-button .wp-block-button__link {
color: #fff;
font-size: 18px;
border: 2px solid #0bb4aa;
background-color: transparent;
}
.wp-block-button .wp-block-button__link:hover {
border-color: #101010;
background: #101010;
color: #fff;
}
However, if that doesn’t work, probably we’ll need more details from you, like:
- what colors do you want to change: background, text, border-color?
I believe that currently the problem is in the default green border color applied to buttons.
If the border is the problem, you can either make it transparent or remove it at all with one of these CSS code:
.wp-block-button .wp-block-button__link {
border-color: transparent;
}
or:
.wp-block-button .wp-block-button__link {
border: none;
}
As for the Portfolio buttons, you can change them using the following CSS code:
.portfolio-archive-taxonomies a {
padding: 10px 20px;
border: 2px solid rgba(175, 175, 175, 0.48);
color: #717175;
font-family: "Montserrat", sans-serif;
font-weight: 500;
}
.portfolio-archive-taxonomies a:hover {
border-color: #0bb4aa;
color: #0bb4aa;
}
/* Selected category */
.portfolio-archive-taxonomies li.current-cat a {
border-color: #222;
color: #222;
}
We’ll probably also add more color options in the future updates to be able to customize the portfolio buttons from the Customizer.