color details

Color Details
#cdcdcd Color Hex

#cdcdcd color RGB value is (12, 220, 220).
#cdcdcd hex color red value is 12, green value is 220, and blue value is 220.
Cylindrical-coordinate representations (HSL) of color #cdcdcd hue: 180, saturation: 0.9 and lightness: 0.45.

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

Color Spaces
Color spaces of #cdcdcdValue
RGB205, 205, 205
HSL0, 0, 0.8
HSV0°, 0°, 80°
XYZ58.03, 61.05, 66.47
Base Numbers
Base Red Green Blue
Binary 11001101 11001101 11001101
Octal 315 315 315
Decimal 205 205 205
Hex CD CD CD

RGB Percentages for Color #cdcdcd

33.33%
33.33%
33.33%

CMYK Percentages of the Color #cdcdcd

19.61%
CSS Codes for Color #cdcdcd
.mybgColor {background-color: #cdcdcd;}
.myforeColor {color: #cdcdcd;}
.myborderColor {border:3px solid #cdcdcd;}
Text Font Color #cdcdcd

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

This sample text is styled with the font color #cdcdcd. 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 #cdcdcd

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

The background color of this div is #cdcdcd
Border Color #cdcdcd

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

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

<p style="text-shadow: 4px 4px 2px rgba(205, 205, 205, 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 #cdcdcd;">Text here</p>

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

Shadow Div Box

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

This div box has a shadow with a specified color. #cdcdcd

Scroll to Top