views:

86

answers:

3

Hi. I want to set color as transperent. In RGB 255 0 255 with alpha 5 may work as transperent, But How to get it in HEX ?

What is the HEX code for Transperent color Thanks in advance...

+3  A: 

There is no such thing; transparency is done via another channel.

Noon Silk
+1  A: 

It depends on the format, some systems require RRGGBB, which doesn't include alpha.

Some have their format as AARRGGBB, so your provided color would be 05FF00FF.

Conversely, some have their format as RRGGBBAA, thus your provided color would be FF00FF05.

ckknight
Nic
If you're dealing with RGB codes, then no - your six digits are RRGGBB, end of story. I suggest you read the documentation for the program or API you're using, because there's no way to point you in the right direction. Different programs/APIs use different formats.
Chris
A: 

I asked the same question a few days ago.

Pekka