Color Wheel Catalog

The 12-hue traditional RYB artist's wheel plus the 6-hue additive RGB light wheel — 18 named positions, each with its role (primary / secondary / tertiary), schematic sRGB value, and the parent hues it mixes from. Every row and every swatch below is computed live at build time from OnlyCSharp.Data.Catalogs.ComputerGraphics.Color.ColorWheelCatalog. Authored as .razor; rendered to static HTML.

Source: traditional color theory (J. Itten, The Art of Color, 1961) and additive RGB primaries (CIE/IEC). Didactic/schematic values — see the leaf README.

SwatchNameWheelRoleHexRGBMixed from
#FF0000RedRYBPrimary#FF0000rgb(255, 0, 0)
#FFFF00YellowRYBPrimary#FFFF00rgb(255, 255, 0)
#0000FFBlueRYBPrimary#0000FFrgb(0, 0, 255)
#FF8000OrangeRYBSecondary#FF8000rgb(255, 128, 0)Red + Yellow
#008000GreenRYBSecondary#008000rgb(0, 128, 0)Yellow + Blue
#8B00FFVioletRYBSecondary#8B00FFrgb(139, 0, 255)Blue + Red
#FF4500Red-orangeRYBTertiary#FF4500rgb(255, 69, 0)Red + Orange
#FFBF00Yellow-orangeRYBTertiary#FFBF00rgb(255, 191, 0)Yellow + Orange
#9ACD32Yellow-greenRYBTertiary#9ACD32rgb(154, 205, 50)Yellow + Green
#008080Blue-greenRYBTertiary#008080rgb(0, 128, 128)Blue + Green
#4B0082Blue-violetRYBTertiary#4B0082rgb(75, 0, 130)Blue + Violet
#C71585Red-violetRYBTertiary#C71585rgb(199, 21, 133)Red + Violet
#FF0000RedRGBPrimary#FF0000rgb(255, 0, 0)
#00FF00GreenRGBPrimary#00FF00rgb(0, 255, 0)
#0000FFBlueRGBPrimary#0000FFrgb(0, 0, 255)
#00FFFFCyanRGBSecondary#00FFFFrgb(0, 255, 255)Green + Blue
#FF00FFMagentaRGBSecondary#FF00FFrgb(255, 0, 255)Blue + Red
#FFFF00YellowRGBSecondary#FFFF00rgb(255, 255, 0)Red + Green