HEX: #72876D
RGB: (114,135,109)
#72876D contains red, green and blue colors in about the same proportion. Web safe color of #72876D is #669966 (or #696).
#72876D color RGB value is (114,135,109).
RGB: (114,135,109) (45%,53%,43%)
R 114 of 255 = 45%
G 135 of 255 = 53%
B 109 of 255 = 43%
R + G + B ~ 47%. #72876D is middle color (not dark and not light).
R + G + B =
114 + 135 + 109 = 358 (100%)
R 114 of 358 ~ 31.84%
G 135 of 358 ~ 37.71%
B 109 of 358 ~ 30.45%
#72876D color CMYK value is (16,0,19,47).
CMYK: (16,0,19,47) C16M0Y19K47 (16%,0%,19%,47%) (0.16/0.00/0.19/0.47)
72 | 87 | 6D | |
---|---|---|---|
RGB | 114 | 135 | 109 |
HSL | 108° | 10.66% | 47.84% |
HSB/HSV | 108° | 19.26% | 52.94% |
CMYK | 15.56% | 0.00% | 19.26% |
47.06% |
HEX | 72 | 87 | 6D |
Decimal | 114 | 135 | 109 |
Binary | 1110010 | 10000111 | 1101101 |
Octal | 162 | 207 | 155 |
Examples of css and html codes for elements with #72876D color. Also use rgb(114,135,109) instead hex code.
.myTextColor { color: #72876D; }
<p style="color:#72876D">This sample text font color is #72876D.</p>
This text font color is #72876D.
.myBgColor { background-color: #72876D; }
<div style="background-color:#72876D">Inner text</div>
This div background color is #72876D.
.myBorderColor { border: 1px solid #72876D; }
<div style="border:3px solid #72876D">Div</div>
This div border color is #72876D.
.myOpacity80 { color: #72876D; opacity: 0.8; }
<p style="color:#72876D;opacity:0.8;">80%</p>
Text with #72876D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #72876D;}
<p style="text-shadow: 3px 3px 1px #72876D">Text here.</p>
This text has shadow with #72876D color.
.textShadow {text-shadow: 3px 3px 1px #72876D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #72876D, 5px 5px 20px red">Text here.</p>
This text has shadow with #72876D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#72876D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#72876D, Direction=45, Strength=4)">Text</p>
This text has shadow with #72876D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #72876D; -webkit-box-shadow: 1px 1px 3px 2px #72876D; box-shadow: 1px 1px 3px 2px #72876D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #72876D; -webkit-box-shadow: 1px 1px 3px 2px #72876D; box-shadow:1px 1px 3px 2px #72876D;">
Div content here</div>
This text has color #72876D on black background.
This text has color #72876D on white background.
This text has black color on #72876D background.
This text has white color on #72876D background.