Skip to content

Instantly share code, notes, and snippets.

@sakshstore
Created September 2, 2022 09:26
Show Gist options
  • Save sakshstore/ba71816414448f67da17ef05af14c517 to your computer and use it in GitHub Desktop.
Save sakshstore/ba71816414448f67da17ef05af14c517 to your computer and use it in GitHub Desktop.
const rgbToHex = (r, g, b) =>
"#" + ((r << 16) + (g << 8) + b).toString(16).padStart(6, "0");
// Usage
rgbToHex(255, 0, 0); // #ff0000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment