No Login Data Private Local Save

3D RGB Color Cube - Online Interactive Space

14
0
0
0
Selected Color
White
HEX #FFFFFF
RGB rgb(255, 255, 255)
HSL hsl(0, 0%, 100%)
CMYK (approx) cmyk(0%, 0%, 0%, 0%)

Click on the cube surface to pick a color. Drag to rotate, scroll to zoom.

Corner Colors
Frequently Asked Questions
An RGB Color Cube is a 3D geometric representation of the RGB (Red-Green-Blue) color space. Each axis represents one color channel: X = Red, Y = Green, Z = Blue, with values ranging from 0 to 255 (or 0.0 to 1.0). The cube's 8 vertices represent the 8 extreme color combinations β€” Black, Red, Green, Blue, Yellow, Cyan, Magenta, and White. Every point inside the cube corresponds to a unique RGB color, encompassing all 16.7 million colors in the standard 24-bit RGB gamut. It's widely used in computer graphics, digital imaging, and color theory education.
The 8 corner points of the RGB cube correspond to:
β€’ Black (0, 0, 0) β€” origin, all channels at minimum
β€’ Red (255, 0, 0) β€” pure red only
β€’ Green (0, 255, 0) β€” pure green only
β€’ Blue (0, 0, 255) β€” pure blue only
β€’ Yellow (255, 255, 0) β€” red + green
β€’ Cyan (0, 255, 255) β€” green + blue
β€’ Magenta (255, 0, 255) β€” red + blue
β€’ White (255, 255, 255) β€” all channels at maximum
The diagonal from Black to White contains all grayscale colors (where R=G=B).
In standard 24-bit RGB color space (8 bits per channel), there are 256 Γ— 256 Γ— 256 = 16,777,216 distinct colors. Each of these colors maps to a unique point inside the RGB cube. Modern displays commonly support 24-bit color (also called True Color), though higher bit depths like 30-bit (10 bits per channel, ~1.07 billion colors) are increasingly available in professional monitors and HDR content.
The RGB cube contains three main complementary color diagonals that pass through the center (middle gray):
β€’ Red ↔ Cyan: (255,0,0) to (0,255,255) β€” these are complementary pairs
β€’ Green ↔ Magenta: (0,255,0) to (255,0,255) β€” complementary pairs
β€’ Blue ↔ Yellow: (0,0,255) to (255,255,0) β€” complementary pairs
β€’ Black ↔ White: (0,0,0) to (255,255,255) β€” the grayscale axis
These diagonals help visualize how colors relate and mix within the RGB model. Complementary colors sit at opposite ends of these diagonals.
RGB (Red, Green, Blue) is an additive color model used by screens and digital displays β€” colors are created by adding light. HSL (Hue, Saturation, Lightness) is a cylindrical-coordinate representation of RGB, designed to be more intuitive for humans: Hue is the color type (0°–360Β°), Saturation is the intensity/purity, and Lightness is the brightness. CMYK (Cyan, Magenta, Yellow, Key/Black) is a subtractive color model used in printing β€” colors are created by subtracting light reflected from white paper using ink pigments. Each model serves different purposes: RGB for screens, HSL for color pickers, and CMYK for print production.
Copied!