HEX: #729672
RGB: (114,150,114)
#729672 contains red, green and blue colors in about the same proportion. Web safe color of #729672 is #669966 (or #696).
#729672 color RGB value is (114,150,114).
RGB: (114,150,114) (45%,59%,45%)
R 114 of 255 = 45%
G 150 of 255 = 59%
B 114 of 255 = 45%
R + G + B ~ 50%. #729672 is middle color (not dark and not light).
R + G + B =
114 + 150 + 114 = 378 (100%)
R 114 of 378 ~ 30.16%
G 150 of 378 ~ 39.68%
B 114 of 378 ~ 30.16%
#729672 color CMYK value is (24,0,24,41).
CMYK: (24,0,24,41) C24M0Y24K41 (24%,0%,24%,41%) (0.24/0.00/0.24/0.41)
72 | 96 | 72 | |
---|---|---|---|
RGB | 114 | 150 | 114 |
HSL | 120° | 14.63% | 51.76% |
HSB/HSV | 120° | 24.00% | 58.82% |
CMYK | 24.00% | 0.00% | 24.00% |
41.18% |
HEX | 72 | 96 | 72 |
Decimal | 114 | 150 | 114 |
Binary | 1110010 | 10010110 | 1110010 |
Octal | 162 | 226 | 162 |
Examples of css and html codes for elements with #729672 color. Also use rgb(114,150,114) instead hex code.
.myTextColor { color: #729672; }
<p style="color:#729672">This sample text font color is #729672.</p>
This text font color is #729672.
.myBgColor { background-color: #729672; }
<div style="background-color:#729672">Inner text</div>
This div background color is #729672.
.myBorderColor { border: 1px solid #729672; }
<div style="border:3px solid #729672">Div</div>
This div border color is #729672.
.myOpacity80 { color: #729672; opacity: 0.8; }
<p style="color:#729672;opacity:0.8;">80%</p>
Text with #729672 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #729672;}
<p style="text-shadow: 3px 3px 1px #729672">Text here.</p>
This text has shadow with #729672 color.
.textShadow {text-shadow: 3px 3px 1px #729672, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #729672, 5px 5px 20px red">Text here.</p>
This text has shadow with #729672 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#729672, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#729672, Direction=45, Strength=4)">Text</p>
This text has shadow with #729672 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #729672; -webkit-box-shadow: 1px 1px 3px 2px #729672; box-shadow: 1px 1px 3px 2px #729672; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #729672; -webkit-box-shadow: 1px 1px 3px 2px #729672; box-shadow:1px 1px 3px 2px #729672;">
Div content here</div>
This text has color #729672 on black background.
This text has color #729672 on white background.
This text has black color on #729672 background.
This text has white color on #729672 background.