color details

Color Details
#dead5c Color Hex

#dead5c color RGB value is (13, 234, 213).
#dead5c hex color red value is 13, green value is 234, and blue value is 213.
Cylindrical-coordinate representations (HSL) of color #dead5c hue: 174.3, saturation: 0.89 and lightness: 0.48.

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

Color Spaces
Color spaces of #dead5cValue
RGB222, 173, 92
HSL0.1, 0.66, 0.62
HSV37°, 59°, 87°
XYZ47, 46.19, 16.56
Base Numbers
Base Red Green Blue
Binary 11011110 10101101 1011100
Octal 336 255 134
Decimal 222 173 92
Hex DE AD 5C

RGB Percentages for Color #dead5c

45.59%
35.52%
18.89%

CMYK Percentages of the Color #dead5c

22.07%
58.56%
12.94%
CSS Codes for Color #dead5c
.mybgColor {background-color: #dead5c;}
.myforeColor {color: #dead5c;}
.myborderColor {border:3px solid #dead5c;}
Text Font Color #dead5c

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top