Skip to content

Commit 82d0334

Browse files
committed
✨ style: match the ui color
1 parent 653cb94 commit 82d0334

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/pages/Maintainers.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export function Maintainers() {
2626
if (loading) {
2727
return (
2828
<div className="min-h-screen flex items-center justify-center">
29-
<div className="animate-spin rounded-full h-16 w-16 border-4 border-indigo-500 border-t-transparent"></div>
29+
<div className="animate-spin rounded-full h-16 w-16 border-4 border-[#6495ed] border-t-transparent"></div>
3030
</div>
3131
);
3232
}
@@ -69,7 +69,7 @@ function MaintainerCard({ maintainer }: { maintainer: Maintainer }) {
6969
<img
7070
src={maintainer.avatarUrl}
7171
alt={maintainer.name || maintainer.login}
72-
className="w-24 h-24 rounded-full ring-2 ring-indigo-50"
72+
className="w-24 h-24 rounded-full ring-2 ring-[#6495ed]"
7373
/>
7474
<div>
7575
<h2 className="text-2xl font-semibold text-gray-800">{maintainer.name || maintainer.login}</h2>
@@ -108,7 +108,7 @@ function MaintainerCard({ maintainer }: { maintainer: Maintainer }) {
108108
href={`https://twitter.com/${maintainer.twitterUsername}`}
109109
target="_blank"
110110
rel="noopener noreferrer"
111-
className="text-blue-500 hover:text-blue-700 transition-colors duration-200"
111+
className="text-[#6495ed] hover:text-[#4169e1] transition-colors duration-200"
112112
>
113113
<Twitter className="h-6 w-6" />
114114
</a>
@@ -118,7 +118,7 @@ function MaintainerCard({ maintainer }: { maintainer: Maintainer }) {
118118
href={maintainer.blog}
119119
target="_blank"
120120
rel="noopener noreferrer"
121-
className="text-indigo-500 hover:text-indigo-700 transition-colors duration-200"
121+
className="text-[#6495ed] hover:text-[#4169e1] transition-colors duration-200"
122122
>
123123
<Globe className="h-6 w-6" />
124124
</a>

0 commit comments

Comments
 (0)