Recolor achievement badges: Surge purple, Circuit red starburst, Nexus navy

New kie.ai art per Marty's palette — Surge dark neon purple, Circuit bright red
starburst, Nexus navy-blue gradient (Spark stays mint). Full-bleed dark, ornate,
blank ribbon; ribbonY re-tuned per badge; ?v=2 cache-bust on the badge images.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
martbost
2026-09-07 09:03:45 -05:00
parent ae580b966c
commit 8e089070dc
6 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -978,7 +978,7 @@ const server = http.createServer(async (req, res) => {
try {
const bc = (await chain.member(a.memberId)).buyerCount || 0;
const t = bc >= 5 ? ['nexus', 'Nexus'] : bc >= 2 ? ['circuit', 'Circuit'] : bc >= 1 ? ['surge', 'Surge'] : ['spark', 'Spark'];
badge = { img: '/badges/badge-' + t[0] + '.jpg', label: t[1] };
badge = { img: '/badges/badge-' + t[0] + '.jpg?v=2', label: t[1] };
} catch (e) {}
}
const joinPath = '/join/' + (a.username || a.code);