HEX: #72B56F
RGB: (114,181,111)
#72B56F contains mainly green color. Web safe color of #72B56F is #66CC66 (or #6C6).
#72B56F color RGB value is (114,181,111).
RGB: (114,181,111) (45%,71%,44%)
R 114 of 255 = 45%
G 181 of 255 = 71%
B 111 of 255 = 44%
R + G + B ~ 53%. #72B56F is middle color (not dark and not light).
R + G + B =
114 + 181 + 111 = 406 (100%)
R 114 of 406 ~ 28.08%
G 181 of 406 ~ 44.58%
B 111 of 406 ~ 27.34%
#72B56F color CMYK value is (37,0,39,29).
CMYK: (37,0,39,29) C37M0Y39K29 (37%,0%,39%,29%) (0.37/0.00/0.39/0.29)
72 | B5 | 6F | |
---|---|---|---|
RGB | 114 | 181 | 111 |
HSL | 117° | 32.11% | 57.25% |
HSB/HSV | 117° | 38.67% | 70.98% |
CMYK | 37.02% | 0.00% | 38.67% |
29.02% |
HEX | 72 | B5 | 6F |
Decimal | 114 | 181 | 111 |
Binary | 1110010 | 10110101 | 1101111 |
Octal | 162 | 265 | 157 |
Examples of css and html codes for elements with #72B56F color. Also use rgb(114,181,111) instead hex code.
.myTextColor { color: #72B56F; }
<p style="color:#72B56F">This sample text font color is #72B56F.</p>
This text font color is #72B56F.
.myBgColor { background-color: #72B56F; }
<div style="background-color:#72B56F">Inner text</div>
This div background color is #72B56F.
.myBorderColor { border: 1px solid #72B56F; }
<div style="border:3px solid #72B56F">Div</div>
This div border color is #72B56F.
.myOpacity80 { color: #72B56F; opacity: 0.8; }
<p style="color:#72B56F;opacity:0.8;">80%</p>
Text with #72B56F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #72B56F;}
<p style="text-shadow: 3px 3px 1px #72B56F">Text here.</p>
This text has shadow with #72B56F color.
.textShadow {text-shadow: 3px 3px 1px #72B56F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #72B56F, 5px 5px 20px red">Text here.</p>
This text has shadow with #72B56F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#72B56F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#72B56F, Direction=45, Strength=4)">Text</p>
This text has shadow with #72B56F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #72B56F; -webkit-box-shadow: 1px 1px 3px 2px #72B56F; box-shadow: 1px 1px 3px 2px #72B56F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #72B56F; -webkit-box-shadow: 1px 1px 3px 2px #72B56F; box-shadow:1px 1px 3px 2px #72B56F;">
Div content here</div>
This text has color #72B56F on black background.
This text has color #72B56F on white background.
This text has black color on #72B56F background.
This text has white color on #72B56F background.