Replace hex color codes with friendly color names for customers

- Add colorNames utility with 80+ standard color names
- Map hex codes to human-readable names (Black, Navy, Red, Teal, etc)
- Display color names in product page (with hex tooltip for reference)
- Show selected color name below color swatches
- Update shopping cart to display color names instead of hex codes
- Admin color picker shows both name and hex code for clarity

Improves UX for customers who don't understand hex color codes.
Keeps hex codes for internal data and system tooltips.

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
Andymick
2026-07-17 20:08:56 +01:00
co-authored by Claude Haiku 4.5
parent 47bc87692d
commit 26ac37b1df
4 changed files with 166 additions and 15 deletions
+3 -1
View File
@@ -3,6 +3,7 @@
import { useEffect, useState } from 'react';
import Link from 'next/link';
import { useCart } from '@/lib/cartStore';
import { getColorName } from '@/lib/colorNames';
import Price from '@/components/Price';
export default function CartPage() {
@@ -70,8 +71,9 @@ export default function CartPage() {
<span
className="h-3.5 w-3.5 rounded-full border border-line"
style={{ backgroundColor: item.color }}
title={item.color}
/>
{item.color}
<span>{getColorName(item.color)}</span>
</span>
{item.size && <span>Size {item.size}</span>}
</div>