HEX: #B4EC72
RGB: (180,236,114)
#B4EC72 contains mainly red and green colors. Web safe color of #B4EC72 is #CCFF66 (or #CF6).
#B4EC72 color RGB value is (180,236,114).
RGB: (180,236,114) (71%,93%,45%)
R 180 of 255 = 71%
G 236 of 255 = 93%
B 114 of 255 = 45%
R + G + B ~ 70%. #B4EC72 is quite light color.
R + G + B =
180 + 236 + 114 = 530 (100%)
R 180 of 530 ~ 33.96%
G 236 of 530 ~ 44.53%
B 114 of 530 ~ 21.51%
#B4EC72 color CMYK value is (24,0,52,7).
CMYK: (24,0,52,7) C24M0Y52K7 (24%,0%,52%,7%) (0.24/0.00/0.52/0.07)
B4 | EC | 72 | |
---|---|---|---|
RGB | 180 | 236 | 114 |
HSL | 88° | 76.25% | 68.63% |
HSB/HSV | 88° | 51.69% | 92.55% |
CMYK | 23.73% | 0.00% | 51.69% |
7.45% |
HEX | B4 | EC | 72 |
Decimal | 180 | 236 | 114 |
Binary | 10110100 | 11101100 | 1110010 |
Octal | 264 | 354 | 162 |
Examples of css and html codes for elements with #B4EC72 color. Also use rgb(180,236,114) instead hex code.
.myTextColor { color: #B4EC72; }
<p style="color:#B4EC72">This sample text font color is #B4EC72.</p>
This text font color is #B4EC72.
.myBgColor { background-color: #B4EC72; }
<div style="background-color:#B4EC72">Inner text</div>
This div background color is #B4EC72.
.myBorderColor { border: 1px solid #B4EC72; }
<div style="border:3px solid #B4EC72">Div</div>
This div border color is #B4EC72.
.myOpacity80 { color: #B4EC72; opacity: 0.8; }
<p style="color:#B4EC72;opacity:0.8;">80%</p>
Text with #B4EC72 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4EC72;}
<p style="text-shadow: 3px 3px 1px #B4EC72">Text here.</p>
This text has shadow with #B4EC72 color.
.textShadow {text-shadow: 3px 3px 1px #B4EC72, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4EC72, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4EC72 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4EC72, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4EC72, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4EC72 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4EC72; -webkit-box-shadow: 1px 1px 3px 2px #B4EC72; box-shadow: 1px 1px 3px 2px #B4EC72; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4EC72; -webkit-box-shadow: 1px 1px 3px 2px #B4EC72; box-shadow:1px 1px 3px 2px #B4EC72;">
Div content here</div>
This text has color #B4EC72 on black background.
This text has color #B4EC72 on white background.
This text has black color on #B4EC72 background.
This text has white color on #B4EC72 background.