HEX: #71474B
RGB: (113,71,75)
#71474B contains red, green and blue colors in about the same proportion. Web safe color of #71474B is #663333 (or #633).
#71474B color RGB value is (113,71,75).
RGB: (113,71,75) (44%,28%,29%)
R 113 of 255 = 44%
G 71 of 255 = 28%
B 75 of 255 = 29%
R + G + B ~ 34%. #71474B is quite dark color.
R + G + B =
113 + 71 + 75 = 259 (100%)
R 113 of 259 ~ 43.63%
G 71 of 259 ~ 27.41%
B 75 of 259 ~ 28.96%
#71474B color CMYK value is (0,37,34,56).
CMYK: (0,37,34,56) C0M37Y34K56 (0%,37%,34%,56%) (0.00/0.37/0.34/0.56)
71 | 47 | 4B | |
---|---|---|---|
RGB | 113 | 71 | 75 |
HSL | 354° | 22.83% | 36.08% |
HSB/HSV | 354° | 37.17% | 44.31% |
CMYK | 0.00% | 37.17% | 33.63% |
55.69% |
HEX | 71 | 47 | 4B |
Decimal | 113 | 71 | 75 |
Binary | 1110001 | 1000111 | 1001011 |
Octal | 161 | 107 | 113 |
Examples of css and html codes for elements with #71474B color. Also use rgb(113,71,75) instead hex code.
.myTextColor { color: #71474B; }
<p style="color:#71474B">This sample text font color is #71474B.</p>
This text font color is #71474B.
.myBgColor { background-color: #71474B; }
<div style="background-color:#71474B">Inner text</div>
This div background color is #71474B.
.myBorderColor { border: 1px solid #71474B; }
<div style="border:3px solid #71474B">Div</div>
This div border color is #71474B.
.myOpacity80 { color: #71474B; opacity: 0.8; }
<p style="color:#71474B;opacity:0.8;">80%</p>
Text with #71474B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71474B;}
<p style="text-shadow: 3px 3px 1px #71474B">Text here.</p>
This text has shadow with #71474B color.
.textShadow {text-shadow: 3px 3px 1px #71474B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71474B, 5px 5px 20px red">Text here.</p>
This text has shadow with #71474B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71474B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71474B, Direction=45, Strength=4)">Text</p>
This text has shadow with #71474B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71474B; -webkit-box-shadow: 1px 1px 3px 2px #71474B; box-shadow: 1px 1px 3px 2px #71474B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71474B; -webkit-box-shadow: 1px 1px 3px 2px #71474B; box-shadow:1px 1px 3px 2px #71474B;">
Div content here</div>
This text has color #71474B on black background.
This text has color #71474B on white background.
This text has black color on #71474B background.
This text has white color on #71474B background.