color details

Color Details
#cd999a Color Hex

#cd999a color RGB value is (12, 217, 153).
#cd999a hex color red value is 12, green value is 217, and blue value is 153.
Cylindrical-coordinate representations (HSL) of color #cd999a hue: 161.27, saturation: 0.9 and lightness: 0.45.

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

Color Spaces
Color spaces of #cd999aValue
RGB205, 153, 154
HSL1, 0.34, 0.7
HSV359°, 25°, 80°
XYZ42.4, 38.1, 35.69
Base Numbers
Base Red Green Blue
Binary 11001101 10011001 10011010
Octal 315 231 232
Decimal 205 153 154
Hex CD 99 9A

RGB Percentages for Color #cd999a

40.04%
29.88%
30.08%

CMYK Percentages of the Color #cd999a

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

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top