Can someone tell me what is the color code for transparency in CSS like white = "#FFFFFF"? Since I use the following code to convert color codes to int:
Color color = ColorTranslator.FromHtml(hex); return (int)((color.R << 16) | (color.G << 8) | (color.B << 0));
html background-color css
Safran ali
source share