color details

Color Details
#cecdcd Color Hex

#cecdcd color RGB value is (12, 236, 220).
#cecdcd hex color red value is 12, green value is 236, and blue value is 220.
Cylindrical-coordinate representations (HSL) of color #cecdcd hue: 175.71, saturation: 0.9 and lightness: 0.49.

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

Color Spaces
Color spaces of #cecdcdValue
RGB206, 205, 205
HSL0, 0.01, 0.81
HSV0°, 0°, 81°
XYZ58.3, 61.19, 66.49
Base Numbers
Base Red Green Blue
Binary 11001110 11001101 11001101
Octal 316 315 315
Decimal 206 205 205
Hex CE CD CD

RGB Percentages for Color #cecdcd

33.44%
33.28%
33.28%

CMYK Percentages of the Color #cecdcd

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

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top