HEX: #71001A
RGB: (113,0,26)
#71001A contains mainly red color. Web safe color of #71001A is #660000 (or #600).
#71001A color RGB value is (113,0,26).
RGB: (113,0,26) (44%,0%,10%)
R 113 of 255 = 44%
G 0 of 255 = 0%
B 26 of 255 = 10%
R + G + B ~ 18%. #71001A is dark color.
R + G + B =
113 + 0 + 26 = 139 (100%)
R 113 of 139 ~ 81.29%
G 0 of 139 ~ 0%
B 26 of 139 ~ 18.71%
#71001A color CMYK value is (0,100,77,56).
CMYK: (0,100,77,56) C0M100Y77K56 (0%,100%,77%,56%) (0.00/1.00/0.77/0.56)
71 | 00 | 1A | |
---|---|---|---|
RGB | 113 | 0 | 26 |
HSL | 346° | 100.00% | 22.16% |
HSB/HSV | 346° | 100.00% | 44.31% |
CMYK | 0.00% | 100.00% | 76.99% |
55.69% |
HEX | 71 | 00 | 1A |
Decimal | 113 | 0 | 26 |
Binary | 1110001 | 0 | 11010 |
Octal | 161 | 0 | 32 |
Examples of css and html codes for elements with #71001A color. Also use rgb(113,0,26) instead hex code.
.myTextColor { color: #71001A; }
<p style="color:#71001A">This sample text font color is #71001A.</p>
This text font color is #71001A.
.myBgColor { background-color: #71001A; }
<div style="background-color:#71001A">Inner text</div>
This div background color is #71001A.
.myBorderColor { border: 1px solid #71001A; }
<div style="border:3px solid #71001A">Div</div>
This div border color is #71001A.
.myOpacity80 { color: #71001A; opacity: 0.8; }
<p style="color:#71001A;opacity:0.8;">80%</p>
Text with #71001A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71001A;}
<p style="text-shadow: 3px 3px 1px #71001A">Text here.</p>
This text has shadow with #71001A color.
.textShadow {text-shadow: 3px 3px 1px #71001A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71001A, 5px 5px 20px red">Text here.</p>
This text has shadow with #71001A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71001A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71001A, Direction=45, Strength=4)">Text</p>
This text has shadow with #71001A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71001A; -webkit-box-shadow: 1px 1px 3px 2px #71001A; box-shadow: 1px 1px 3px 2px #71001A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71001A; -webkit-box-shadow: 1px 1px 3px 2px #71001A; box-shadow:1px 1px 3px 2px #71001A;">
Div content here</div>
This text has color #71001A on black background.
This text has color #71001A on white background.
This text has black color on #71001A background.
This text has white color on #71001A background.