HEX: #B0E494
RGB: (176,228,148)
#B0E494 contains mainly red and green colors. Web safe color of #B0E494 is #99CC99 (or #9C9).
#B0E494 color RGB value is (176,228,148).
RGB: (176,228,148) (69%,89%,58%)
R 176 of 255 = 69%
G 228 of 255 = 89%
B 148 of 255 = 58%
R + G + B ~ 72%. #B0E494 is quite light color.
R + G + B =
176 + 228 + 148 = 552 (100%)
R 176 of 552 ~ 31.88%
G 228 of 552 ~ 41.3%
B 148 of 552 ~ 26.81%
#B0E494 color CMYK value is (23,0,35,11).
CMYK: (23,0,35,11) C23M0Y35K11 (23%,0%,35%,11%) (0.23/0.00/0.35/0.11)
B0 | E4 | 94 | |
---|---|---|---|
RGB | 176 | 228 | 148 |
HSL | 99° | 59.70% | 73.73% |
HSB/HSV | 99° | 35.09% | 89.41% |
CMYK | 22.81% | 0.00% | 35.09% |
10.59% |
HEX | B0 | E4 | 94 |
Decimal | 176 | 228 | 148 |
Binary | 10110000 | 11100100 | 10010100 |
Octal | 260 | 344 | 224 |
Examples of css and html codes for elements with #B0E494 color. Also use rgb(176,228,148) instead hex code.
.myTextColor { color: #B0E494; }
<p style="color:#B0E494">This sample text font color is #B0E494.</p>
This text font color is #B0E494.
.myBgColor { background-color: #B0E494; }
<div style="background-color:#B0E494">Inner text</div>
This div background color is #B0E494.
.myBorderColor { border: 1px solid #B0E494; }
<div style="border:3px solid #B0E494">Div</div>
This div border color is #B0E494.
.myOpacity80 { color: #B0E494; opacity: 0.8; }
<p style="color:#B0E494;opacity:0.8;">80%</p>
Text with #B0E494 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B0E494;}
<p style="text-shadow: 3px 3px 1px #B0E494">Text here.</p>
This text has shadow with #B0E494 color.
.textShadow {text-shadow: 3px 3px 1px #B0E494, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B0E494, 5px 5px 20px red">Text here.</p>
This text has shadow with #B0E494 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B0E494, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B0E494, Direction=45, Strength=4)">Text</p>
This text has shadow with #B0E494 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B0E494; -webkit-box-shadow: 1px 1px 3px 2px #B0E494; box-shadow: 1px 1px 3px 2px #B0E494; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B0E494; -webkit-box-shadow: 1px 1px 3px 2px #B0E494; box-shadow:1px 1px 3px 2px #B0E494;">
Div content here</div>
This text has color #B0E494 on black background.
This text has color #B0E494 on white background.
This text has black color on #B0E494 background.
This text has white color on #B0E494 background.