color details

Color Details
#dd005a Color Hex

#dd005a color RGB value is (13, 208, 5).
#dd005a hex color red value is 13, green value is 208, and blue value is 5.
Cylindrical-coordinate representations (HSL) of color #dd005a hue: 117.64, saturation: 0.95 and lightness: 0.42.

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

Color Spaces
Color spaces of #dd005aValue
RGB221, 0, 90
HSL0.93, 1, 0.43
HSV336°, 100°, 87°
XYZ31.67, 16.12, 11.11
Base Numbers
Base Red Green Blue
Binary 11011101 0 1011010
Octal 335 0 132
Decimal 221 0 90
Hex DD 0 5A

RGB Percentages for Color #dd005a

71.06%
28.94%

CMYK Percentages of the Color #dd005a

100%
59.28%
13.33%
CSS Codes for Color #dd005a
.mybgColor {background-color: #dd005a;}
.myforeColor {color: #dd005a;}
.myborderColor {border:3px solid #dd005a;}
Text Font Color #dd005a

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top