color details

Color Details
#def2de Color Hex

#def2de color RGB value is (13, 239, 45).
#def2de hex color red value is 13, green value is 239, and blue value is 45.
Cylindrical-coordinate representations (HSL) of color #def2de hue: 128.5, saturation: 0.9 and lightness: 0.49.

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

Color Spaces
Color spaces of #def2deValue
RGB222, 242, 222
HSL0.33, 0.43, 0.91
HSV120°, 8°, 95°
XYZ75.06, 84.31, 81.41
Base Numbers
Base Red Green Blue
Binary 11011110 11110010 11011110
Octal 336 362 336
Decimal 222 242 222
Hex DE F2 DE

RGB Percentages for Color #def2de

32.36%
35.28%
32.36%

CMYK Percentages of the Color #def2de

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

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top