HEX: #75864E
RGB: (117,134,78)
#75864E contains red, green and blue colors in about the same proportion. Web safe color of #75864E is #669966 (or #696).
#75864E color RGB value is (117,134,78).
RGB: (117,134,78) (46%,53%,31%)
R 117 of 255 = 46%
G 134 of 255 = 53%
B 78 of 255 = 31%
R + G + B ~ 43%. #75864E is middle color (not dark and not light).
R + G + B =
117 + 134 + 78 = 329 (100%)
R 117 of 329 ~ 35.56%
G 134 of 329 ~ 40.73%
B 78 of 329 ~ 23.71%
#75864E color CMYK value is (13,0,42,47).
CMYK: (13,0,42,47) C13M0Y42K47 (13%,0%,42%,47%) (0.13/0.00/0.42/0.47)
75 | 86 | 4E | |
---|---|---|---|
RGB | 117 | 134 | 78 |
HSL | 78° | 26.42% | 41.57% |
HSB/HSV | 78° | 41.79% | 52.55% |
CMYK | 12.69% | 0.00% | 41.79% |
47.45% |
HEX | 75 | 86 | 4E |
Decimal | 117 | 134 | 78 |
Binary | 1110101 | 10000110 | 1001110 |
Octal | 165 | 206 | 116 |
Examples of css and html codes for elements with #75864E color. Also use rgb(117,134,78) instead hex code.
.myTextColor { color: #75864E; }
<p style="color:#75864E">This sample text font color is #75864E.</p>
This text font color is #75864E.
.myBgColor { background-color: #75864E; }
<div style="background-color:#75864E">Inner text</div>
This div background color is #75864E.
.myBorderColor { border: 1px solid #75864E; }
<div style="border:3px solid #75864E">Div</div>
This div border color is #75864E.
.myOpacity80 { color: #75864E; opacity: 0.8; }
<p style="color:#75864E;opacity:0.8;">80%</p>
Text with #75864E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #75864E;}
<p style="text-shadow: 3px 3px 1px #75864E">Text here.</p>
This text has shadow with #75864E color.
.textShadow {text-shadow: 3px 3px 1px #75864E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #75864E, 5px 5px 20px red">Text here.</p>
This text has shadow with #75864E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#75864E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#75864E, Direction=45, Strength=4)">Text</p>
This text has shadow with #75864E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #75864E; -webkit-box-shadow: 1px 1px 3px 2px #75864E; box-shadow: 1px 1px 3px 2px #75864E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #75864E; -webkit-box-shadow: 1px 1px 3px 2px #75864E; box-shadow:1px 1px 3px 2px #75864E;">
Div content here</div>
This text has color #75864E on black background.
This text has color #75864E on white background.
This text has black color on #75864E background.
This text has white color on #75864E background.