Make "New Topic" button more prominent

Head to admin/customize/themes and add this to your active theme under common > CSS

#create-topic {
  background: var(--tertiary);
  color: var(--secondary);
  svg {
    color: var(--secondary);
  }
  &:hover {
    background: var(--tertiary-hover);
    svg {
      color: var(--secondary);
    }
  }
}

You can read more about Discourse themes here.

Beginner's guide to using Discourse Themes

6 Likes