#dfdfdf color RGB value is (13, 253, 253).
#dfdfdf hex color red value is 13, green value is 253, and blue value is 253.
Cylindrical-coordinate representations (HSL) of color #dfdfdf
hue: 180,
saturation: 0.98 and lightness: 0.52.
The process color (four-color CMYK) of #dfdfdf color hex is 0.00, 0.28, 0.40, 0.03. Web safe color of #dfdfdf is #ff9999. Color #dfdfdf contains mainly RED.
| Color spaces of #dfdfdf | Value |
|---|---|
| RGB | 223, 223, 223 |
| HSL | 0, 0, 0.87 |
| HSV | 0°, 0°, 87° |
| XYZ | 70.14, 73.79, 80.35 |
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11011111 | 11011111 | 11011111 |
| Octal | 337 | 337 | 337 |
| Decimal | 223 | 223 | 223 |
| Hex | DF | DF | DF |
Shades of #dfdfdf
Tints of #dfdfdf
.mybgColor {background-color: #dfdfdf;}
.myforeColor {color: #dfdfdf;}
.myborderColor {border:3px solid #dfdfdf;}
<p style="color:#dfdfdf">Text here</p>
This sample text is styled with the font color #dfdfdf. 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:#dfdfdf">Div content here</div>
<div style="border:3px solid #dfdfdf">Div here</div>
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(223, 223, 223, 0.8); }
.textShadowHex {
text-shadow: 4px 4px 2px #dfdfdf; }
.divShadow {
-moz-box-shadow: 1px 1px 3px #dfdfdf;
-webkit-box-shadow: 1px 1px 3px #dfdfdf;
box-shadow: 1px 1px 3px #dfdfdf; }
<p style="text-shadow: 4px 4px 2px rgba(223, 223, 223, 0.8);">Text here</p>
This text has a shadow with RGB values.
<p style="text-shadow: 4px 4px 2px #dfdfdf;">Text here</p>
This text has a shadow with hexadecimal (hex) values.
<div style="-moz-box-shadow: 1px 1px 3px #dfdfdf;
-webkit-box-shadow: 1px 1px 3px #dfdfdf;
box-shadow: 1px 1px 3px #dfdfdf;">Div content here</div>
