Update category colors: update=lime, patch=tomato

This commit is contained in:
backuppc
2025-12-02 17:30:46 +09:00
parent e53a870893
commit ee08dc2e8c

View File

@@ -206,8 +206,8 @@ export function PatchList() {
{item.cate && ( {item.cate && (
<span className={`px-2 py-0.5 text-xs rounded whitespace-nowrap ${ <span className={`px-2 py-0.5 text-xs rounded whitespace-nowrap ${
item.cate.toLowerCase() === 'update' item.cate.toLowerCase() === 'update'
? 'bg-white/10 text-white' ? 'bg-lime-500/20 text-lime-400'
: 'bg-[#87CEEB]/20 text-[#87CEEB]' : 'bg-red-500/20 text-red-400'
}`}> }`}>
{item.cate} {item.cate}
</span> </span>