Discourse Button Styles

I think you’d have to do it with CSS if you want to target specific buttons. This CSS should do the trick:

button#create-topic > *, button#create-topic {
    color: white;
    background-color: blue;
    border-radius: 1em;
}

Add it in Admin > Customize > Themes and Components > Components > (New component) > Edit CSS/HTML > CSS.

2 Likes