HEX: #727D19
RGB: (114,125,25)
#727D19 contains mainly red and green colors. Web safe color of #727D19 is #666600 (or #660).
#727D19 color RGB value is (114,125,25).
RGB: (114,125,25) (45%,49%,10%)
R 114 of 255 = 45%
G 125 of 255 = 49%
B 25 of 255 = 10%
R + G + B ~ 35%. #727D19 is quite dark color.
R + G + B =
114 + 125 + 25 = 264 (100%)
R 114 of 264 ~ 43.18%
G 125 of 264 ~ 47.35%
B 25 of 264 ~ 9.47%
#727D19 color CMYK value is (9,0,80,51).
CMYK: (9,0,80,51) C9M0Y80K51 (9%,0%,80%,51%) (0.09/0.00/0.80/0.51)
72 | 7D | 19 | |
---|---|---|---|
RGB | 114 | 125 | 25 |
HSL | 67° | 66.67% | 29.41% |
HSB/HSV | 67° | 80.00% | 49.02% |
CMYK | 8.80% | 0.00% | 80.00% |
50.98% |
HEX | 72 | 7D | 19 |
Decimal | 114 | 125 | 25 |
Binary | 1110010 | 1111101 | 11001 |
Octal | 162 | 175 | 31 |
Examples of css and html codes for elements with #727D19 color. Also use rgb(114,125,25) instead hex code.
.myTextColor { color: #727D19; }
<p style="color:#727D19">This sample text font color is #727D19.</p>
This text font color is #727D19.
.myBgColor { background-color: #727D19; }
<div style="background-color:#727D19">Inner text</div>
This div background color is #727D19.
.myBorderColor { border: 1px solid #727D19; }
<div style="border:3px solid #727D19">Div</div>
This div border color is #727D19.
.myOpacity80 { color: #727D19; opacity: 0.8; }
<p style="color:#727D19;opacity:0.8;">80%</p>
Text with #727D19 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #727D19;}
<p style="text-shadow: 3px 3px 1px #727D19">Text here.</p>
This text has shadow with #727D19 color.
.textShadow {text-shadow: 3px 3px 1px #727D19, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #727D19, 5px 5px 20px red">Text here.</p>
This text has shadow with #727D19 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#727D19, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#727D19, Direction=45, Strength=4)">Text</p>
This text has shadow with #727D19 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #727D19; -webkit-box-shadow: 1px 1px 3px 2px #727D19; box-shadow: 1px 1px 3px 2px #727D19; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #727D19; -webkit-box-shadow: 1px 1px 3px 2px #727D19; box-shadow:1px 1px 3px 2px #727D19;">
Div content here</div>
This text has color #727D19 on black background.
This text has color #727D19 on white background.
This text has black color on #727D19 background.
This text has white color on #727D19 background.