Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am building a web CMS in which the user can choose colours for certain site elements. I would like to convert all colour values to hex to avoid any further formatting hassle ("rgb(x,y,z)" or named colours). I have found a good JS library for that.

The only thing that I can't get into hex is "transparent". I need this when explicitly declaring an element as transparent, which in my experience can be different from not defining any value at all.

Does anybody know whether this can be turned into some numeric form? Will I have to set up all processing instances to accept hex values or "transparent"? I can't think of any other way.

share|improve this question

5 Answers

up vote 7 down vote accepted

Transparency is a property outside the color itself, also known as alpha component. You can't code it as RGB.

If you want a transparent background, you can do this:

background: transparent;

Additionally, I don't know if it might be helpful or not but, you could set the opacity property:

.half{
  opacity: 0.5;
  filter: alpha(opacity=50);
}

You need both in order to get it working in IE and all other decent browsers.

share|improve this answer
Yes, it normally is. However, the CSS implementation has situations in which I am forced to use "color: transparent", e.g. for the background color. Thus my question. – Pekka 웃 Nov 17 '09 at 19:47
... I was thinking whether there might be some kind of "alpha color" like in the GIF format. But I've never heard of such a thing in HTML. – Pekka 웃 Nov 17 '09 at 19:48
There is: it's called opacity. But it's not cross-browser. I've now edited my answer, take a look there. – Seb Nov 18 '09 at 15:37

The alpha channel defines the transparency value of a color, so any color is 100% transparent as long as the alpha value is 0. Typically this four-channel color type is known as RGBA.

You can specify RGBA in CSS like so:

div {
    background: rgba(200, 54, 54, 0.5); /* 50% transparent */
}

Note that not all browsers support RGBA, in which case you can specify a fallback:

div {
    background: rgb(200, 54, 54); /* fallback */
    background: rgba(200, 54, 54, 0.5); /* 50% transparent */
}

More information regarding browser support and workarounds can be found here.

share|improve this answer
Oohh, interesting! Do you know whether this is cross-browser safe? – Pekka 웃 Nov 17 '09 at 19:50
Very nice, I didn't know about this, thanks. However as long as it's not widely supported, I would have to work around it using "transparent" anyway. Will keep this in mind and chekc again in 3-4 years' time, when the browser landscape has changed. – Pekka 웃 Nov 17 '09 at 19:53
1  
Alas, IE7 and 8 won't have disappeared in 3-4 years! – FelipeAls Nov 18 '09 at 7:25

There are two common approaches for this: either reserve a specific color as being "transparent," in which case you cannot use that color in images without it appearing transparent, or define a fourth channel alongside red, green, and blue called "alpha" which indicates translucency/transparency.

share|improve this answer

I was also trying for transparency - maybe you could try leaving blank the value of background e.g. something like

bgcolor=" "
share|improve this answer

You can use this conversion table: http://roselab.jhu.edu/~raj/MISC/hexdectxt.html

eg, if you want a transparency of 60%, you use 3C (hex equivalent).

This is usefull for IE background gradient transparency:

filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#3C545454, endColorstr=#3C545454);
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#3C545454, endColorstr=#3C545454)";

where startColorstr and endColorstr: 2 first characters are a hex value for transparency, and the six remaining are the hex color.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.