diff --git a/lib/components/navigation/breadcrumbs.jsx b/lib/components/navigation/breadcrumbs.jsx
index 11f3503a..87c96e75 100644
--- a/lib/components/navigation/breadcrumbs.jsx
+++ b/lib/components/navigation/breadcrumbs.jsx
@@ -7,7 +7,7 @@ import Link from "./link";
function BreadcrumbItem({ className, href, text }) {
const breadcrumbItemClass = useMemo(() => {
return gwMerge(
- "gw-text-gray-300 hover:gw-text-gray-500 last:gw-text-gray-900",
+ "gw-text-gray-500 hover:gw-text-gray-700 last:gw-text-gray-900",
className,
);
}, [className]);
@@ -17,7 +17,7 @@ function BreadcrumbItem({ className, href, text }) {
Home