aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
Diffstat (limited to 'packages')
-rw-r--r--packages/web/app/dashboard/bookmarks/components/TagList.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/web/app/dashboard/bookmarks/components/TagList.tsx b/packages/web/app/dashboard/bookmarks/components/TagList.tsx
index 440452a7..19c26c97 100644
--- a/packages/web/app/dashboard/bookmarks/components/TagList.tsx
+++ b/packages/web/app/dashboard/bookmarks/components/TagList.tsx
@@ -28,10 +28,10 @@ export default function TagList({
href={`/dashboard/tags/${t.name}`}
>
<Badge
- variant="default"
- className="text-nowrap bg-gray-300 text-gray-500 hover:text-white"
+ variant="outline"
+ className="text-nowrap hover:bg-foreground hover:text-secondary"
>
- #{t.name}
+ {t.name}
</Badge>
</Link>
))}