HEX: #71464C
RGB: (113,70,76)
#71464C contains red, green and blue colors in about the same proportion. Web safe color of #71464C is #663333 (or #633).
#71464C color RGB value is (113,70,76).
RGB: (113,70,76) (44%,27%,30%)
R 113 of 255 = 44%
G 70 of 255 = 27%
B 76 of 255 = 30%
R + G + B ~ 34%. #71464C is quite dark color.
R + G + B =
113 + 70 + 76 = 259 (100%)
R 113 of 259 ~ 43.63%
G 70 of 259 ~ 27.03%
B 76 of 259 ~ 29.34%
#71464C color CMYK value is (0,38,33,56).
CMYK: (0,38,33,56) C0M38Y33K56 (0%,38%,33%,56%) (0.00/0.38/0.33/0.56)
71 | 46 | 4C | |
---|---|---|---|
RGB | 113 | 70 | 76 |
HSL | 352° | 23.50% | 35.88% |
HSB/HSV | 352° | 38.05% | 44.31% |
CMYK | 0.00% | 38.05% | 32.74% |
55.69% |
HEX | 71 | 46 | 4C |
Decimal | 113 | 70 | 76 |
Binary | 1110001 | 1000110 | 1001100 |
Octal | 161 | 106 | 114 |
Examples of css and html codes for elements with #71464C color. Also use rgb(113,70,76) instead hex code.
.myTextColor { color: #71464C; }
<p style="color:#71464C">This sample text font color is #71464C.</p>
This text font color is #71464C.
.myBgColor { background-color: #71464C; }
<div style="background-color:#71464C">Inner text</div>
This div background color is #71464C.
.myBorderColor { border: 1px solid #71464C; }
<div style="border:3px solid #71464C">Div</div>
This div border color is #71464C.
.myOpacity80 { color: #71464C; opacity: 0.8; }
<p style="color:#71464C;opacity:0.8;">80%</p>
Text with #71464C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71464C;}
<p style="text-shadow: 3px 3px 1px #71464C">Text here.</p>
This text has shadow with #71464C color.
.textShadow {text-shadow: 3px 3px 1px #71464C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71464C, 5px 5px 20px red">Text here.</p>
This text has shadow with #71464C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71464C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71464C, Direction=45, Strength=4)">Text</p>
This text has shadow with #71464C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71464C; -webkit-box-shadow: 1px 1px 3px 2px #71464C; box-shadow: 1px 1px 3px 2px #71464C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71464C; -webkit-box-shadow: 1px 1px 3px 2px #71464C; box-shadow:1px 1px 3px 2px #71464C;">
Div content here</div>
This text has color #71464C on black background.
This text has color #71464C on white background.
This text has black color on #71464C background.
This text has white color on #71464C background.