feat(KB-625): add industrial color theme

- Add industrial to COLOR_THEMES array in types.ts
- Add industrial theme CSS definitions with dark grunge aesthetic
- Add industrial theme selector entry in ThemeSelector component
- Add industrial theme swatch styles for preview
This commit is contained in:
gsxdsm
2026-03-31 20:03:51 -07:00
parent 6c6447f2f1
commit e5e5f0a67b
3 changed files with 50 additions and 2 deletions

View File

@@ -22,8 +22,9 @@ const COLOR_THEMES: { value: ColorTheme; label: string; className: string }[] =
{ value: "sunset", label: "Sunset", className: "theme-swatch-sunset" },
{ value: "zen", label: "Zen", className: "theme-swatch-zen" },
{ value: "berry", label: "Berry", className: "theme-swatch-berry" },
{ value: "monochrome", label: "Mono", className: "theme-swatch-monochrome" },
{ value: "high-contrast", label: "High Contrast", className: "theme-swatch-high-contrast" },
{ value: "industrial", label: "Industrial", className: "theme-swatch-industrial" },
{ value: "monochrome", label: "Mono", className: "theme-swatch-monochrome" },
{ value: "solarized", label: "Solarized", className: "theme-swatch-solarized" },
{ value: "factory", label: "Factory", className: "theme-swatch-factory" },
{ value: "ayu", label: "Ayu", className: "theme-swatch-ayu" },