Style Tab Container

I use Tabs for a form and they do not show up very clearly. How do I change the active and inactive table background and font colors?

Hello @cwalter2,

You can change tabs styling with CSS:

/* style all tabs */
a.nav-link {
    font-weight: bold;
    color: red;
    background: black;
}

/* style selected tab */
a.nav-link.active {
    font-weight: bold;
    color: blue;
    background: white;
}