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
button#create-topic {
If you want to keep the green success
color then you should change the var(--tertiary)
to var(--success)
. Like this
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);
}
}
}