Invert a hex color (get complementary color).
Code
General'#' + (0xFFFFFF ^ parseInt(hex.slice(1), 16)).toString(16).padStart(6, '0');Parameters
Hex color to invert
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.
Is Light Color
Check if a hex color is light (good for determining text color).
Lighten Color
Lighten a hex color by a percentage.
Random Hex Color
Generate a random hexadecimal color code for use in CSS or graphics applications.