HEX: #727A49
RGB: (114,122,73)
#727A49 contains red, green and blue colors in about the same proportion. Web safe color of #727A49 is #666633 (or #663).
#727A49 color RGB value is (114,122,73).
RGB: (114,122,73) (45%,48%,29%)
R 114 of 255 = 45%
G 122 of 255 = 48%
B 73 of 255 = 29%
R + G + B ~ 41%. #727A49 is middle color (not dark and not light).
R + G + B =
114 + 122 + 73 = 309 (100%)
R 114 of 309 ~ 36.89%
G 122 of 309 ~ 39.48%
B 73 of 309 ~ 23.62%
#727A49 color CMYK value is (7,0,40,52).
CMYK: (7,0,40,52) C7M0Y40K52 (7%,0%,40%,52%) (0.07/0.00/0.40/0.52)
72 | 7A | 49 | |
---|---|---|---|
RGB | 114 | 122 | 73 |
HSL | 70° | 25.13% | 38.24% |
HSB/HSV | 70° | 40.16% | 47.84% |
CMYK | 6.56% | 0.00% | 40.16% |
52.16% |
HEX | 72 | 7A | 49 |
Decimal | 114 | 122 | 73 |
Binary | 1110010 | 1111010 | 1001001 |
Octal | 162 | 172 | 111 |
Examples of css and html codes for elements with #727A49 color. Also use rgb(114,122,73) instead hex code.
.myTextColor { color: #727A49; }
<p style="color:#727A49">This sample text font color is #727A49.</p>
This text font color is #727A49.
.myBgColor { background-color: #727A49; }
<div style="background-color:#727A49">Inner text</div>
This div background color is #727A49.
.myBorderColor { border: 1px solid #727A49; }
<div style="border:3px solid #727A49">Div</div>
This div border color is #727A49.
.myOpacity80 { color: #727A49; opacity: 0.8; }
<p style="color:#727A49;opacity:0.8;">80%</p>
Text with #727A49 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #727A49;}
<p style="text-shadow: 3px 3px 1px #727A49">Text here.</p>
This text has shadow with #727A49 color.
.textShadow {text-shadow: 3px 3px 1px #727A49, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #727A49, 5px 5px 20px red">Text here.</p>
This text has shadow with #727A49 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#727A49, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#727A49, Direction=45, Strength=4)">Text</p>
This text has shadow with #727A49 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #727A49; -webkit-box-shadow: 1px 1px 3px 2px #727A49; box-shadow: 1px 1px 3px 2px #727A49; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #727A49; -webkit-box-shadow: 1px 1px 3px 2px #727A49; box-shadow:1px 1px 3px 2px #727A49;">
Div content here</div>
This text has color #727A49 on black background.
This text has color #727A49 on white background.
This text has black color on #727A49 background.
This text has white color on #727A49 background.