Dissemination Machine

IT, Software Development, cloud, blog, google apps, concurrency, mind training, storehouse, biology, dissemination machine

AARRGGBB byte values April 29, 2011

Filed under: Projects — karmafeast @ 11:42

#FFFFDEAD – all dead, as white as a trampled, bleached skull. there’s hidden things everywhere.

Due to the fact that its still very much under the patenting process I cannot talk about what I’m doing at work 😦  Its a mobile project.

HINT- Silverlight by default only shows up byte codes for a handful of colors, which is troublesome.  you’ll end up randomly assigning them if your populating elements from code and will quickly run out of the default selection.  Then for me its either keep using the color picker on another object to pick a new color, or make one up.

I’m sure there must be people who’ve added the additional enumerations for common web colors shown below.  Imma cook up one at some point soon and chuck it up here.

Color moo = new Color.FromARGB(0x??,0x??,0x??,0x??)

C# – Color moo = new Color.FromARGB(0x??,0x??,0x??,0x??)

 

Leave a comment