View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Peter T Peter T is offline
external usenet poster
 
Posts: 5,600
Default Excel 2007: blue is no longer 0000FF

In all versions of Excel and for most purposes in VB(A), 0000FF is red

colour value = B x 256^2 + G x 256 + R = &Hbbggrr

where R,G,B are values 0-255

HTML uses the opposite hex (ie byte) order, #rrggbb

Regards,
Peter T

"None" wrote in message
...
Hello,
In Excel 2007, I find many standard color are no longer standard. For
example, blue is no longer 0000FF. What's the underlying reason?