Cambiar el botón "+ Nuevo tema" para que coincida con el estilo del botón "Responder"

¡Respuesta fantástica!!! ¡Muchas gracias!

Podría aprovechar un poco más de consejo sobre CSS… ¿cómo podría minimizar mejor estos dos fragmentos de código?:

Cambiar el color del botón [+ Nuevo tema] en el encabezado

Este botón del encabezado existe gracias al tema (+) botón de nuevo tema en todas las páginas

.header-buttons .btn.btn-default {
      background: #00ccff;
      color: #fff;
      font-weight: 600;
  }
.header-buttons .btn.btn-default svg {
      color: #fff !important;
  }
.header-buttons .btn.btn-default:hover {
      background: #00a3cc;
  }

Cambiar el color del botón [+ Nuevo tema] en las páginas de categorías y etiquetas

button#create-topic {
      background: #00ccff;
      color: #fff;
      font-weight: 600;
  }
button#create-topic svg {
      color: #fff !important;
  }
button#create-topic:hover {
      background: #00a3cc;
  }