HEX: #B2E062
RGB: (178,224,98)
#B2E062 contains mainly red and green colors. Web safe color of #B2E062 is #99CC66 (or #9C6).
#B2E062 color RGB value is (178,224,98).
RGB: (178,224,98) (70%,88%,38%)
R 178 of 255 = 70%
G 224 of 255 = 88%
B 98 of 255 = 38%
R + G + B ~ 65%. #B2E062 is quite light color.
R + G + B =
178 + 224 + 98 = 500 (100%)
R 178 of 500 ~ 35.6%
G 224 of 500 ~ 44.8%
B 98 of 500 ~ 19.6%
#B2E062 color CMYK value is (21,0,56,12).
CMYK: (21,0,56,12) C21M0Y56K12 (21%,0%,56%,12%) (0.21/0.00/0.56/0.12)
B2 | E0 | 62 | |
---|---|---|---|
RGB | 178 | 224 | 98 |
HSL | 82° | 67.02% | 63.14% |
HSB/HSV | 82° | 56.25% | 87.84% |
CMYK | 20.54% | 0.00% | 56.25% |
12.16% |
HEX | B2 | E0 | 62 |
Decimal | 178 | 224 | 98 |
Binary | 10110010 | 11100000 | 1100010 |
Octal | 262 | 340 | 142 |
Examples of css and html codes for elements with #B2E062 color. Also use rgb(178,224,98) instead hex code.
.myTextColor { color: #B2E062; }
<p style="color:#B2E062">This sample text font color is #B2E062.</p>
This text font color is #B2E062.
.myBgColor { background-color: #B2E062; }
<div style="background-color:#B2E062">Inner text</div>
This div background color is #B2E062.
.myBorderColor { border: 1px solid #B2E062; }
<div style="border:3px solid #B2E062">Div</div>
This div border color is #B2E062.
.myOpacity80 { color: #B2E062; opacity: 0.8; }
<p style="color:#B2E062;opacity:0.8;">80%</p>
Text with #B2E062 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B2E062;}
<p style="text-shadow: 3px 3px 1px #B2E062">Text here.</p>
This text has shadow with #B2E062 color.
.textShadow {text-shadow: 3px 3px 1px #B2E062, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B2E062, 5px 5px 20px red">Text here.</p>
This text has shadow with #B2E062 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B2E062, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B2E062, Direction=45, Strength=4)">Text</p>
This text has shadow with #B2E062 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B2E062; -webkit-box-shadow: 1px 1px 3px 2px #B2E062; box-shadow: 1px 1px 3px 2px #B2E062; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B2E062; -webkit-box-shadow: 1px 1px 3px 2px #B2E062; box-shadow:1px 1px 3px 2px #B2E062;">
Div content here</div>
This text has color #B2E062 on black background.
This text has color #B2E062 on white background.
This text has black color on #B2E062 background.
This text has white color on #B2E062 background.