This commit is contained in:
Theo Browne
2026-02-20 02:52:39 -08:00
parent 104eb8e73e
commit 6b4ed5fcb3
4 changed files with 7 additions and 0 deletions

View File

@@ -33,6 +33,7 @@ const MODEL_COLORS: Record<string, string> = {
"Opus 4.6": "#D97757",
"Sonnet 4.6": "#D97757",
"Grok 4.1": "#FFFFFF",
"MiniMax 2.5": "#FF3B30",
};
function getColor(name: string): string {
@@ -47,6 +48,7 @@ function getLogo(name: string): string | null {
if (name.includes("GPT")) return "/assets/logos/openai.svg";
if (name.includes("Opus") || name.includes("Sonnet")) return "/assets/logos/claude.svg";
if (name.includes("Grok")) return "/assets/logos/grok.svg";
if (name.includes("MiniMax")) return "/assets/logos/minimax.svg";
return null;
}