HEX: #73D728
RGB: (115,215,40)
#73D728 contains mainly green color. Web safe color of #73D728 is #66CC33 (or #6C3).
#73D728 color RGB value is (115,215,40).
RGB: (115,215,40) (45%,84%,16%)
R 115 of 255 = 45%
G 215 of 255 = 84%
B 40 of 255 = 16%
R + G + B ~ 48%. #73D728 is middle color (not dark and not light).
R + G + B =
115 + 215 + 40 = 370 (100%)
R 115 of 370 ~ 31.08%
G 215 of 370 ~ 58.11%
B 40 of 370 ~ 10.81%
#73D728 color CMYK value is (47,0,81,16).
CMYK: (47,0,81,16) C47M0Y81K16 (47%,0%,81%,16%) (0.47/0.00/0.81/0.16)
73 | D7 | 28 | |
---|---|---|---|
RGB | 115 | 215 | 40 |
HSL | 94° | 68.63% | 50.00% |
HSB/HSV | 94° | 81.40% | 84.31% |
CMYK | 46.51% | 0.00% | 81.40% |
15.69% |
HEX | 73 | D7 | 28 |
Decimal | 115 | 215 | 40 |
Binary | 1110011 | 11010111 | 101000 |
Octal | 163 | 327 | 50 |
Examples of css and html codes for elements with #73D728 color. Also use rgb(115,215,40) instead hex code.
.myTextColor { color: #73D728; }
<p style="color:#73D728">This sample text font color is #73D728.</p>
This text font color is #73D728.
.myBgColor { background-color: #73D728; }
<div style="background-color:#73D728">Inner text</div>
This div background color is #73D728.
.myBorderColor { border: 1px solid #73D728; }
<div style="border:3px solid #73D728">Div</div>
This div border color is #73D728.
.myOpacity80 { color: #73D728; opacity: 0.8; }
<p style="color:#73D728;opacity:0.8;">80%</p>
Text with #73D728 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #73D728;}
<p style="text-shadow: 3px 3px 1px #73D728">Text here.</p>
This text has shadow with #73D728 color.
.textShadow {text-shadow: 3px 3px 1px #73D728, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #73D728, 5px 5px 20px red">Text here.</p>
This text has shadow with #73D728 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#73D728, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#73D728, Direction=45, Strength=4)">Text</p>
This text has shadow with #73D728 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #73D728; -webkit-box-shadow: 1px 1px 3px 2px #73D728; box-shadow: 1px 1px 3px 2px #73D728; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #73D728; -webkit-box-shadow: 1px 1px 3px 2px #73D728; box-shadow:1px 1px 3px 2px #73D728;">
Div content here</div>
This text has color #73D728 on black background.
This text has color #73D728 on white background.
This text has black color on #73D728 background.
This text has white color on #73D728 background.