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