HEX: #5F711F
RGB: (95,113,31)
#5F711F contains mainly red and green colors. Web safe color of #5F711F is #666633 (or #663).
#5F711F color RGB value is (95,113,31).
RGB: (95,113,31) (37%,44%,12%)
R 95 of 255 = 37%
G 113 of 255 = 44%
B 31 of 255 = 12%
R + G + B ~ 31%. #5F711F is quite dark color.
R + G + B =
95 + 113 + 31 = 239 (100%)
R 95 of 239 ~ 39.75%
G 113 of 239 ~ 47.28%
B 31 of 239 ~ 12.97%
#5F711F color CMYK value is (16,0,73,56).
CMYK: (16,0,73,56) C16M0Y73K56 (16%,0%,73%,56%) (0.16/0.00/0.73/0.56)
5F | 71 | 1F | |
---|---|---|---|
RGB | 95 | 113 | 31 |
HSL | 73° | 56.94% | 28.24% |
HSB/HSV | 73° | 72.57% | 44.31% |
CMYK | 15.93% | 0.00% | 72.57% |
55.69% |
HEX | 5F | 71 | 1F |
Decimal | 95 | 113 | 31 |
Binary | 1011111 | 1110001 | 11111 |
Octal | 137 | 161 | 37 |
Examples of css and html codes for elements with #5F711F color. Also use rgb(95,113,31) instead hex code.
.myTextColor { color: #5F711F; }
<p style="color:#5F711F">This sample text font color is #5F711F.</p>
This text font color is #5F711F.
.myBgColor { background-color: #5F711F; }
<div style="background-color:#5F711F">Inner text</div>
This div background color is #5F711F.
.myBorderColor { border: 1px solid #5F711F; }
<div style="border:3px solid #5F711F">Div</div>
This div border color is #5F711F.
.myOpacity80 { color: #5F711F; opacity: 0.8; }
<p style="color:#5F711F;opacity:0.8;">80%</p>
Text with #5F711F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #5F711F;}
<p style="text-shadow: 3px 3px 1px #5F711F">Text here.</p>
This text has shadow with #5F711F color.
.textShadow {text-shadow: 3px 3px 1px #5F711F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #5F711F, 5px 5px 20px red">Text here.</p>
This text has shadow with #5F711F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#5F711F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#5F711F, Direction=45, Strength=4)">Text</p>
This text has shadow with #5F711F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #5F711F; -webkit-box-shadow: 1px 1px 3px 2px #5F711F; box-shadow: 1px 1px 3px 2px #5F711F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #5F711F; -webkit-box-shadow: 1px 1px 3px 2px #5F711F; box-shadow:1px 1px 3px 2px #5F711F;">
Div content here</div>
This text has color #5F711F on black background.
This text has color #5F711F on white background.
This text has black color on #5F711F background.
This text has white color on #5F711F background.