Spaces:
Running
Running
| document.addEventListener('DOMContentLoaded', () => { | |
| // Generate random color palette button functionality | |
| const generateBtn = document.querySelector('button'); | |
| if (generateBtn) { | |
| generateBtn.addEventListener('click', () => { | |
| // This would be replaced with actual color generation logic | |
| alert('Color palette generation coming soon!'); | |
| }); | |
| } | |
| }); |