{/* Type Badge - Most Important */}
- {getTypeIcon(signature.type)}
+ {meta.icon}
{signature.type || 'Unknown Type'}
diff --git a/src/components/SignatureListItem.tsx b/src/components/SignatureListItem.tsx
index 6318dc5..5995e82 100644
--- a/src/components/SignatureListItem.tsx
+++ b/src/components/SignatureListItem.tsx
@@ -43,13 +43,14 @@ export const SignatureListItem = ({ signature }: SignatureListItemProps) => {
};
const meta = getSignatureMeta(signature.type || "");
-
+ const isGasSite = signature.type?.toLowerCase().includes('gas');
const oldEntry = isOld();
return (
{/* Type Badge - Most Important */}
diff --git a/src/hooks/useSignatureCategories.tsx b/src/hooks/useSignatureCategories.tsx
index ee09bd8..945a969 100644
--- a/src/hooks/useSignatureCategories.tsx
+++ b/src/hooks/useSignatureCategories.tsx
@@ -43,8 +43,8 @@ const allCategories = new Map([
matcher: /^gas/i,
id: "gas",
name: 'Gas Sites',
- icon: ,
- color: "text-green-400 border-green-600"
+ icon: ,
+ color: "bg-emerald-900/40 text-emerald-200 border-emerald-500 shadow-[0_0_15px_rgba(16,185,129,0.5)] hover:shadow-[0_0_20px_rgba(16,185,129,0.7)] transition-all duration-300"
}],
["ore", {
matcher: /^ore/i,