Skip to content

Instantly share code, notes, and snippets.

@mrroot5
Created May 14, 2019 06:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrroot5/640fa21bca4776d5290720136ac461ba to your computer and use it in GitHub Desktop.
Save mrroot5/640fa21bca4776d5290720136ac461ba to your computer and use it in GitHub Desktop.
RGB a hexadecimal
const RGBToHex = (r, g, b) => ((r << 16) + (g << 8) + b).toString(16).padStart(6, '0');
RGBToHex(255, 165, 1); // 'ffa501'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment