Back to all questionsHow can I change Tabs border color?Edit this page on GitHubReport issue with the articleLast updated February 15, 2024Tabs border is added with ::before on the list element. You can use Styles API to change styles of inner elements: GalleryMessagesSettingsDemo.module.cssDemo.tsx.root { @mixin light { --border-color: var(--mantine-color-gray-1); } @mixin dark { --border-color: var(--mantine-color-dark-5); } } .list::before { border-color: var(--border-color); } .tab:not([data-active]) { @mixin hover { border-color: var(--border-color); } }Expand code