HEX: #71846D
RGB: (113,132,109)
#71846D contains red, green and blue colors in about the same proportion. Web safe color of #71846D is #669966 (or #696).
#71846D color RGB value is (113,132,109).
RGB: (113,132,109) (44%,52%,43%)
R 113 of 255 = 44%
G 132 of 255 = 52%
B 109 of 255 = 43%
R + G + B ~ 46%. #71846D is middle color (not dark and not light).
R + G + B =
113 + 132 + 109 = 354 (100%)
R 113 of 354 ~ 31.92%
G 132 of 354 ~ 37.29%
B 109 of 354 ~ 30.79%
#71846D color CMYK value is (14,0,17,48).
CMYK: (14,0,17,48) C14M0Y17K48 (14%,0%,17%,48%) (0.14/0.00/0.17/0.48)
71 | 84 | 6D | |
---|---|---|---|
RGB | 113 | 132 | 109 |
HSL | 110° | 9.54% | 47.25% |
HSB/HSV | 110° | 17.42% | 51.76% |
CMYK | 14.39% | 0.00% | 17.42% |
48.24% |
HEX | 71 | 84 | 6D |
Decimal | 113 | 132 | 109 |
Binary | 1110001 | 10000100 | 1101101 |
Octal | 161 | 204 | 155 |
Examples of css and html codes for elements with #71846D color. Also use rgb(113,132,109) instead hex code.
.myTextColor { color: #71846D; }
<p style="color:#71846D">This sample text font color is #71846D.</p>
This text font color is #71846D.
.myBgColor { background-color: #71846D; }
<div style="background-color:#71846D">Inner text</div>
This div background color is #71846D.
.myBorderColor { border: 1px solid #71846D; }
<div style="border:3px solid #71846D">Div</div>
This div border color is #71846D.
.myOpacity80 { color: #71846D; opacity: 0.8; }
<p style="color:#71846D;opacity:0.8;">80%</p>
Text with #71846D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71846D;}
<p style="text-shadow: 3px 3px 1px #71846D">Text here.</p>
This text has shadow with #71846D color.
.textShadow {text-shadow: 3px 3px 1px #71846D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71846D, 5px 5px 20px red">Text here.</p>
This text has shadow with #71846D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71846D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71846D, Direction=45, Strength=4)">Text</p>
This text has shadow with #71846D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71846D; -webkit-box-shadow: 1px 1px 3px 2px #71846D; box-shadow: 1px 1px 3px 2px #71846D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71846D; -webkit-box-shadow: 1px 1px 3px 2px #71846D; box-shadow:1px 1px 3px 2px #71846D;">
Div content here</div>
This text has color #71846D on black background.
This text has color #71846D on white background.
This text has black color on #71846D background.
This text has white color on #71846D background.