()
| 620 | } |
| 621 | |
| 622 | function saveCustomPalettes() { |
| 623 | try { |
| 624 | localStorage.setItem(CUSTOM_PALETTES_KEY, JSON.stringify(customPalettes)); |
| 625 | } catch (e) { |
| 626 | console.error('Failed to save custom palettes:', e); |
| 627 | } |
| 628 | } |
| 629 | |
| 630 | function deleteCustomPalette(id) { |
| 631 | customPalettes = customPalettes.filter(p => p.id !== id); |
no outgoing calls
no test coverage detected