Convert RGB color values (0-255) to a hexadecimal color code.
Code
Utilities'#' + [r, g, b].map(x => x.toString(16).padStart(2, '0')).join('');Parameters
Red value (0-255).
Green value (0-255).
Blue value (0-255).
Browser·fetch() may be limited by CORS
More JavaScript Snippets
Blend Colors
Blend two hex colors together with a customizable ratio.
Darken Color
Darken a hex color by a percentage.
Hex to RGB
Convert a hex color code to RGB values.
Invert Color
Invert a hex color (get complementary color).
Is Light Color
Check if a hex color is light (good for determining text color).
Lighten Color
Lighten a hex color by a percentage.