Customize the New Topic button

Hello,

It seems to this is the Dracula Theme. I checked the source.

You have to add button before #create-topic to override it.

So it should start :arrow_down:

button#create-topic {

If you want to keep the green success color then you should change the var(--tertiary) to var(--success). Like this :arrow_down:

button#create-topic {
  color: var(--secondary);
  border: 2px solid var(--success);
  background: var(--success);
  transition: background .25s ease-out;
  .d-icon {
    color: var(--secondary);
  }
  &:hover,
  &:focus {
    background: var(--secondary);
    color: var(--success);
    .d-icon {
      color: var(--success);
    }
  }
}
2 Likes