#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 of #DC143C | Value |
---|---|
RGB | 220, 20, 60 |
HSL | 0.97, 0.83, 0.47 |
HSV | 348°, 91°, 86° |
XYZ | 30.58, 16.05, 5.76 |
Base | Red | Green | Blue |
---|---|---|---|
Binary | 11011100 | 10100 | 111100 |
Octal | 334 | 24 | 74 |
Decimal | 220 | 20 | 60 |
Hex | DC | 14 | 3C |
Shades of #DC143C
Tints of #DC143C
.mybgColor {background-color: #DC143C;} .myforeColor {color: #DC143C;} .myborderColor {border:3px solid #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,
<div style="background-color:#DC143C">Div content here</div>
<div style="border:3px solid #DC143C">Div here</div>
.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; }
<p style="text-shadow: 4px 4px 2px rgba(220, 20, 60, 0.8);">Text here</p>
This text has a shadow with RGB values.
<p style="text-shadow: 4px 4px 2px #DC143C;">Text here</p>
This text has a shadow with hexadecimal (hex) values.
<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>