aboutsummaryrefslogtreecommitdiffstats
path: root/packages/web
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-02-29 11:13:58 +0000
committerMohamedBassem <me@mbassem.com>2024-02-29 11:13:58 +0000
commita251292b138fc5bbf37449f759abc05fa2117fe7 (patch)
tree4082bd6bcb1133c8c0806e9b05978d8ed01e34f6 /packages/web
parent900d576c54f8ee734a9652dcc2e30ced480408a2 (diff)
downloadkarakeep-a251292b138fc5bbf37449f759abc05fa2117fe7.tar.zst
fix: Change the colors of the tag pill
Diffstat (limited to 'packages/web')
-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>
))}