File size: 401 Bytes
29b5343
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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!');
        });
    }
});