HEX: #72B059
RGB: (114,176,89)
#72B059 contains mainly green color. Web safe color of #72B059 is #669966 (or #696).
#72B059 color RGB value is (114,176,89).
RGB: (114,176,89) (45%,69%,35%)
R 114 of 255 = 45%
G 176 of 255 = 69%
B 89 of 255 = 35%
R + G + B ~ 50%. #72B059 is middle color (not dark and not light).
R + G + B =
114 + 176 + 89 = 379 (100%)
R 114 of 379 ~ 30.08%
G 176 of 379 ~ 46.44%
B 89 of 379 ~ 23.48%
#72B059 color CMYK value is (35,0,49,31).
CMYK: (35,0,49,31) C35M0Y49K31 (35%,0%,49%,31%) (0.35/0.00/0.49/0.31)
72 | B0 | 59 | |
---|---|---|---|
RGB | 114 | 176 | 89 |
HSL | 103° | 35.51% | 51.96% |
HSB/HSV | 103° | 49.43% | 69.02% |
CMYK | 35.23% | 0.00% | 49.43% |
30.98% |
HEX | 72 | B0 | 59 |
Decimal | 114 | 176 | 89 |
Binary | 1110010 | 10110000 | 1011001 |
Octal | 162 | 260 | 131 |
Examples of css and html codes for elements with #72B059 color. Also use rgb(114,176,89) instead hex code.
.myTextColor { color: #72B059; }
<p style="color:#72B059">This sample text font color is #72B059.</p>
This text font color is #72B059.
.myBgColor { background-color: #72B059; }
<div style="background-color:#72B059">Inner text</div>
This div background color is #72B059.
.myBorderColor { border: 1px solid #72B059; }
<div style="border:3px solid #72B059">Div</div>
This div border color is #72B059.
.myOpacity80 { color: #72B059; opacity: 0.8; }
<p style="color:#72B059;opacity:0.8;">80%</p>
Text with #72B059 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #72B059;}
<p style="text-shadow: 3px 3px 1px #72B059">Text here.</p>
This text has shadow with #72B059 color.
.textShadow {text-shadow: 3px 3px 1px #72B059, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #72B059, 5px 5px 20px red">Text here.</p>
This text has shadow with #72B059 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#72B059, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#72B059, Direction=45, Strength=4)">Text</p>
This text has shadow with #72B059 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #72B059; -webkit-box-shadow: 1px 1px 3px 2px #72B059; box-shadow: 1px 1px 3px 2px #72B059; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #72B059; -webkit-box-shadow: 1px 1px 3px 2px #72B059; box-shadow:1px 1px 3px 2px #72B059;">
Div content here</div>
This text has color #72B059 on black background.
This text has color #72B059 on white background.
This text has black color on #72B059 background.
This text has white color on #72B059 background.