color details

Color Details
#dfdfdf Color Hex

#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
Color spaces of #dfdfdfValue
RGB223, 223, 223
HSL0, 0, 0.87
HSV0°, 0°, 87°
XYZ70.14, 73.79, 80.35
Base Numbers
Base Red Green Blue
Binary 11011111 11011111 11011111
Octal 337 337 337
Decimal 223 223 223
Hex DF DF DF

RGB Percentages for Color #dfdfdf

33.33%
33.33%
33.33%

CMYK Percentages of the Color #dfdfdf

12.55%
CSS Codes for Color #dfdfdf
.mybgColor {background-color: #dfdfdf;}
.myforeColor {color: #dfdfdf;}
.myborderColor {border:3px solid #dfdfdf;}
Text Font Color #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,

Background Color #dfdfdf

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

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

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

The border color of this div is #dfdfdf
Css3 Examples
            .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;            }
            
Text Shadow Using RGB Values

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

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

Shadow Div Box

<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>

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

Scroll to Top