@@ -26,19 +26,19 @@ const stateIcons: Record<Contributions['prs'][number]['state'], string> = {
2626 :href =" `https://github.com/${data.repo}`"
2727 target =" _blank"
2828 relative
29- :class =" ['size-10 sm:size-12 shrink-0 border border-gray -200 dark:border-gray -800 overflow-hidden shadow-sm', data.type === 'Organization' ? 'rounded-lg' : 'rounded-full']"
29+ :class =" ['size-10 sm:size-12 shrink-0 border border-neutral -200 dark:border-neutral -800 overflow-hidden shadow-sm', data.type === 'Organization' ? 'rounded-lg' : 'rounded-full']"
3030 >
3131 <img :src =" `https://github.com/${data.repo.split('/')[0]}.png`" :alt =" data.repo" class =" size-full" >
3232 </a >
3333
3434 <div class =" flex-1 flex justify-between gap-2 lg:gap-4 min-w-0" >
3535 <div class =" flex flex-col min-w-0 gap-0.5 sm:gap-1" >
36- <a :href =" data.url" target =" _blank" class =" text-sm sm:text-base flex items-center gap-0.5 sm:gap-1 hover:underline text-gray -900 dark:text-white" >
36+ <a :href =" data.url" target =" _blank" class =" text-sm sm:text-base flex items-center gap-0.5 sm:gap-1 hover:underline text-neutral -900 dark:text-white" >
3737 <UIcon
3838 :name =" stateIcons[data.state]"
3939 :class =" {
4040 'text-green-500 dark:text-green-400': data.state === 'open',
41- 'text-gray -500 dark:text-gray -400': data.state === 'draft',
41+ 'text-neutral -500 dark:text-neutral -400': data.state === 'draft',
4242 'text-purple-500 dark:text-purple-400': data.state === 'merged',
4343 'text-red-500 dark:text-red-400': data.state === 'closed',
4444 }"
@@ -54,7 +54,7 @@ const stateIcons: Record<Contributions['prs'][number]['state'], string> = {
5454 <span class =" opacity-50" >/</span >
5555 <span class =" truncate" >{{ data.repo.split('/')[1] }}</span >
5656 </a >
57- <a :href =" `https://github.com/${data.repo}`" target =" _blank" class =" items-center hidden sm:inline-flex gap-0.5 text-gray -500 dark:text-gray -400 hover:text-black dark:hover:text-white truncate" >
57+ <a :href =" `https://github.com/${data.repo}`" target =" _blank" class =" items-center hidden sm:inline-flex gap-0.5 text-neutral -500 dark:text-neutral -400 hover:text-black dark:hover:text-white truncate" >
5858 <UIcon name =" i-lucide-star" class =" size-3 shrink-0" />
5959 <span class =" text-xs" >{{ formatStars(data.stars) }}</span >
6060 </a >
@@ -66,7 +66,7 @@ const stateIcons: Record<Contributions['prs'][number]['state'], string> = {
6666 #{{ data.number }}
6767 </a >
6868
69- <time :datatime =" data.created_at" class =" text-xs sm:text-sm text-gray -500 dark:text-gray -400" >{{ useTimeAgo(new Date(data.created_at)) }}</time >
69+ <time :datatime =" data.created_at" class =" text-xs sm:text-sm text-neutral -500 dark:text-neutral -400" >{{ useTimeAgo(new Date(data.created_at)) }}</time >
7070 </div >
7171 </div >
7272 </div >
0 commit comments