Software Colors

From Minor Miracle Software
Jump to: navigation, search

Software Colors

  • Rendering color in software

Red Green Blue (RGB)

Color rendered by mixing red, green, and blue from 0-255 parts each.

Color m_color = RGB(255,0,0); // Produces the darkest red.

Color tables are available at Rapidtables[1], and Taylored Marketing[2].

Red = RGB(255,0,0)
Blue = RGB(0,0,255)
Green, bright = RGB(0,255,0)
Black = RGB(0,0,0)
Gray = RGB(128,128,128)
White = RGB(255,255,255)
Yellow = RGB(255,255,255)

Internal Links

Parent Article: Main Page