color details

Color Details
#cdeec3 Color Hex

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

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

Color Spaces
Color spaces of #cdeec3Value
RGB205, 238, 195
HSL0.29, 0.56, 0.85
HSV106°, 18°, 93°
XYZ65.6, 78.07, 63.23
Base Numbers
Base Red Green Blue
Binary 11001101 11101110 11000011
Octal 315 356 303
Decimal 205 238 195
Hex CD EE C3

RGB Percentages for Color #cdeec3

32.13%
37.3%
30.56%

CMYK Percentages of the Color #cdeec3

13.87%
18.07%
6.67%
CSS Codes for Color #cdeec3
.mybgColor {background-color: #cdeec3;}
.myforeColor {color: #cdeec3;}
.myborderColor {border:3px solid #cdeec3;}
Text Font Color #cdeec3

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top