I am using Tabs from flowbite, the tailwind component library. But there is no way to customize the design colors of the tabs. Is any have used it?
This is the output
import { Tabs } from "flowbite-react";
export default function CoursesTab() {
return (
<>
<Tabs.Group aria-label="Tabs with underline" style="underline" className="justify-between">
{categories.map((category, index) => {
return (
<Tabs.Item className="Chinmoy" key={index} title={category.name}>
{category.name} content
</Tabs.Item>
);
})}
</Tabs.Group>
</>
);
}
How to customize the tabs color and border color