From cc4f3b7dcf7c36d0c9aaf7034d5197ba21d9eaf2 Mon Sep 17 00:00:00 2001 From: Shawn Date: Sun, 31 May 2026 02:26:01 -0400 Subject: [PATCH] Swap all category icons to game-icons MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All 8 categories now use Game Icons from game-icons.net: - Bev: game-icons:soda-bottle (glass soda bottle) - Snack: game-icons:chips-bag (crinkly chip bag) - Food: game-icons:hamburger (stacked burger) - Equip: game-icons:wrench (adjustable wrench) - Appl: game-icons:cooler (ice chest) - Markets: game-icons:shop (storefront with awning) - Coffee: game-icons:coffee-cup (paper cup with steam) - Other: game-icons:cargo-crate (industrial crate) Zero external deps — inline SVGs from Iconify CDN --- static/index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/static/index.html b/static/index.html index 7afa9b0..e137341 100644 --- a/static/index.html +++ b/static/index.html @@ -3175,12 +3175,12 @@ const CATEGORY_MAP = { 'Bev': { icon: '', color: '#0a7ab5' }, 'Snack': { icon: '', color: '#c97d0e' }, - 'Food': { icon: '', color: '#e67e22' }, - 'Equipment': { icon: '', color: '#2c3e50' }, - 'Appliances': { icon: '', color: '#3b82f6' }, - 'Markets': { icon: '', color: '#7c3aed' }, - 'Coffee': { icon: '', color: '#a16207' }, - 'Other': { icon: '', color: '#6b7280' }, + 'Food': { icon: '', color: '#e67e22' }, + 'Equipment': { icon: '', color: '#2c3e50' }, + 'Appliances': { icon: '', color: '#3b82f6' }, + 'Markets': { icon: '', color: '#7c3aed' }, + 'Coffee': { icon: '', color: '#a16207' }, + 'Other': { icon: '', color: '#6b7280' }, }; const CATEGORY_UNMAPPED_ICON = '❓'; const CATEGORY_UNMAPPED_COLOR = '#b91c1c';