#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 of #dededf | Value |
---|---|
RGB | 222, 222, 223 |
HSL | 0.67, 0.02, 0.87 |
HSV | 240°, 0°, 87° |
XYZ | 69.56, 73.1, 80.24 |
Base | Red | Green | Blue |
---|---|---|---|
Binary | 11011110 | 11011110 | 11011111 |
Octal | 336 | 336 | 337 |
Decimal | 222 | 222 | 223 |
Hex | DE | DE | DF |
Shades of #dededf
Tints of #dededf
.mybgColor {background-color: #dededf;} .myforeColor {color: #dededf;} .myborderColor {border:3px solid #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,
<div style="background-color:#dededf">Div content here</div>
<div style="border:3px solid #dededf">Div here</div>
.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; }
<p style="text-shadow: 4px 4px 2px rgba(222, 222, 223, 0.8);">Text here</p>
This text has a shadow with RGB values.
<p style="text-shadow: 4px 4px 2px #dededf;">Text here</p>
This text has a shadow with hexadecimal (hex) values.
<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>