Skip to content

Instantly share code, notes, and snippets.

@Klerith
Created January 15, 2025 16:50
Show Gist options
  • Save Klerith/06e97606f531d936641987f394dc1e9f to your computer and use it in GitHub Desktop.
Save Klerith/06e97606f531d936641987f394dc1e9f to your computer and use it in GitHub Desktop.
Generador de colores HEX
const color = '#xxxxxx'.replace(/x/g, (y) =>
((Math.random() * 16) | 0).toString(16)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment