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