color details

Color Details
#dededf Color Hex

#dededf color RGB value is (13, 237, 237).
#dededf hex color red value is 13, green value is 237, and blue value is 237.
Cylindrical-coordinate representations (HSL) of color #dededf hue: 180, saturation: 0.9 and lightness: 0.49.

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

Color Spaces
Color spaces of #dededfValue
RGB222, 222, 223
HSL0.67, 0.02, 0.87
HSV240°, 0°, 87°
XYZ69.56, 73.1, 80.24
Base Numbers
Base Red Green Blue
Binary 11011110 11011110 11011111
Octal 336 336 337
Decimal 222 222 223
Hex DE DE DF

RGB Percentages for Color #dededf

33.28%
33.28%
33.43%

CMYK Percentages of the Color #dededf

0.45%
0.45%
12.55%
CSS Codes for Color #dededf
.mybgColor {background-color: #dededf;}
.myforeColor {color: #dededf;}
.myborderColor {border:3px solid #dededf;}
Text Font Color #dededf

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top