HEX: #71885C
RGB: (113,136,92)
#71885C contains red, green and blue colors in about the same proportion. Web safe color of #71885C is #669966 (or #696).
#71885C color RGB value is (113,136,92).
RGB: (113,136,92) (44%,53%,36%)
R 113 of 255 = 44%
G 136 of 255 = 53%
B 92 of 255 = 36%
R + G + B ~ 44%. #71885C is middle color (not dark and not light).
R + G + B =
113 + 136 + 92 = 341 (100%)
R 113 of 341 ~ 33.14%
G 136 of 341 ~ 39.88%
B 92 of 341 ~ 26.98%
#71885C color CMYK value is (17,0,32,47).
CMYK: (17,0,32,47) C17M0Y32K47 (17%,0%,32%,47%) (0.17/0.00/0.32/0.47)
71 | 88 | 5C | |
---|---|---|---|
RGB | 113 | 136 | 92 |
HSL | 91° | 19.30% | 44.71% |
HSB/HSV | 91° | 32.35% | 53.33% |
CMYK | 16.91% | 0.00% | 32.35% |
46.67% |
HEX | 71 | 88 | 5C |
Decimal | 113 | 136 | 92 |
Binary | 1110001 | 10001000 | 1011100 |
Octal | 161 | 210 | 134 |
Examples of css and html codes for elements with #71885C color. Also use rgb(113,136,92) instead hex code.
.myTextColor { color: #71885C; }
<p style="color:#71885C">This sample text font color is #71885C.</p>
This text font color is #71885C.
.myBgColor { background-color: #71885C; }
<div style="background-color:#71885C">Inner text</div>
This div background color is #71885C.
.myBorderColor { border: 1px solid #71885C; }
<div style="border:3px solid #71885C">Div</div>
This div border color is #71885C.
.myOpacity80 { color: #71885C; opacity: 0.8; }
<p style="color:#71885C;opacity:0.8;">80%</p>
Text with #71885C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71885C;}
<p style="text-shadow: 3px 3px 1px #71885C">Text here.</p>
This text has shadow with #71885C color.
.textShadow {text-shadow: 3px 3px 1px #71885C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71885C, 5px 5px 20px red">Text here.</p>
This text has shadow with #71885C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71885C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71885C, Direction=45, Strength=4)">Text</p>
This text has shadow with #71885C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71885C; -webkit-box-shadow: 1px 1px 3px 2px #71885C; box-shadow: 1px 1px 3px 2px #71885C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71885C; -webkit-box-shadow: 1px 1px 3px 2px #71885C; box-shadow:1px 1px 3px 2px #71885C;">
Div content here</div>
This text has color #71885C on black background.
This text has color #71885C on white background.
This text has black color on #71885C background.
This text has white color on #71885C background.