color details

Color Details
#00cccc Color Hex

#00cccc color RGB value is (0, 12, 204).
#00cccc hex color red value is 0, green value is 12, and blue value is 204.
Cylindrical-coordinate representations (HSL) of color #00cccc hue: 236.47, saturation: 1 and lightness: 0.4.

The process color (four-color CMYK) of #00cccc color hex is 0.00, 0.28, 0.40, 0.03. Web safe color of #00cccc is #ff9999. Color #00cccc contains mainly RED.

Color Spaces
Color spaces of #00ccccValue
RGB0, 204, 204
HSL0.5, 1, 0.4
HSV180°, 100°, 80°
XYZ32.49, 47.54, 64.58
Base Numbers
Base Red Green Blue
Binary 0 11001100 11001100
Octal 0 314 314
Decimal 0 204 204
Hex 0 CC CC

RGB Percentages for Color #00cccc

50%
50%

CMYK Percentages of the Color #00cccc

100%
20%
CSS Codes for Color #00cccc
.mybgColor {background-color: #00cccc;}
.myforeColor {color: #00cccc;}
.myborderColor {border:3px solid #00cccc;}
Text Font Color #00cccc

<p style="color:#00cccc">Text here</p>

This sample text is styled with the font color #00cccc. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here,

Background Color #00cccc

<div style="background-color:#00cccc">Div content here</div>

The background color of this div is #00cccc
Border Color #00cccc

<div style="border:3px solid #00cccc">Div here</div>

The border color of this div is #00cccc
Css3 Examples
            .textShadowRgb {
                text-shadow: 4px 4px 2px rgba(0, 204, 204, 0.8);            }
            .textShadowHex {
                text-shadow: 4px 4px 2px #00cccc;            }
            .divShadow {
                -moz-box-shadow: 1px 1px 3px #00cccc;
-webkit-box-shadow: 1px 1px 3px #00cccc;
box-shadow: 1px 1px 3px #00cccc;            }
            
Text Shadow Using RGB Values

<p style="text-shadow: 4px 4px 2px rgba(0, 204, 204, 0.8);">Text here</p>

This text has a shadow with RGB values.

Text Shadow Using Hex Values

<p style="text-shadow: 4px 4px 2px #00cccc;">Text here</p>

This text has a shadow with hexadecimal (hex) values.

Shadow Div Box

<div style="-moz-box-shadow: 1px 1px 3px #00cccc; -webkit-box-shadow: 1px 1px 3px #00cccc; box-shadow: 1px 1px 3px #00cccc;">Div content here</div>

This div box has a shadow with a specified color. #00cccc

Scroll to Top