color details

Color Details
#dc143c Color Hex

#dc143c color RGB value is (13, 193, 67).
#dc143c hex color red value is 13, green value is 193, and blue value is 67.
Cylindrical-coordinate representations (HSL) of color #dc143c hue: 138, saturation: 0.87 and lightness: 0.4.

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

Color Spaces
Color spaces of #dc143cValue
RGB220, 20, 60
HSL0.97, 0.83, 0.47
HSV348°, 91°, 86°
XYZ30.58, 16.05, 5.76
Base Numbers
Base Red Green Blue
Binary 11011100 10100 111100
Octal 334 24 74
Decimal 220 20 60
Hex DC 14 3C

RGB Percentages for Color #dc143c

73.33%
6.67%
20%

CMYK Percentages of the Color #dc143c

90.91%
72.73%
13.73%
CSS Codes for Color #dc143c
.mybgColor {background-color: #dc143c;}
.myforeColor {color: #dc143c;}
.myborderColor {border:3px solid #dc143c;}
Text Font Color #dc143c

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

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

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

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

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

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

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

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

Shadow Div Box

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

This div box has a shadow with a specified color. #dc143c
Scroll to Top