HEX: #B0E980
RGB: (176,233,128)
#B0E980 contains mainly red and green colors. Web safe color of #B0E980 is #99FF66 (or #9F6).
#B0E980 color RGB value is (176,233,128).
RGB: (176,233,128) (69%,91%,50%)
R 176 of 255 = 69%
G 233 of 255 = 91%
B 128 of 255 = 50%
R + G + B ~ 70%. #B0E980 is quite light color.
R + G + B =
176 + 233 + 128 = 537 (100%)
R 176 of 537 ~ 32.77%
G 233 of 537 ~ 43.39%
B 128 of 537 ~ 23.84%
#B0E980 color CMYK value is (24,0,45,9).
CMYK: (24,0,45,9) C24M0Y45K9 (24%,0%,45%,9%) (0.24/0.00/0.45/0.09)
B0 | E9 | 80 | |
---|---|---|---|
RGB | 176 | 233 | 128 |
HSL | 93° | 70.47% | 70.78% |
HSB/HSV | 93° | 45.06% | 91.37% |
CMYK | 24.46% | 0.00% | 45.06% |
8.63% |
HEX | B0 | E9 | 80 |
Decimal | 176 | 233 | 128 |
Binary | 10110000 | 11101001 | 10000000 |
Octal | 260 | 351 | 200 |
Examples of css and html codes for elements with #B0E980 color. Also use rgb(176,233,128) instead hex code.
.myTextColor { color: #B0E980; }
<p style="color:#B0E980">This sample text font color is #B0E980.</p>
This text font color is #B0E980.
.myBgColor { background-color: #B0E980; }
<div style="background-color:#B0E980">Inner text</div>
This div background color is #B0E980.
.myBorderColor { border: 1px solid #B0E980; }
<div style="border:3px solid #B0E980">Div</div>
This div border color is #B0E980.
.myOpacity80 { color: #B0E980; opacity: 0.8; }
<p style="color:#B0E980;opacity:0.8;">80%</p>
Text with #B0E980 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B0E980;}
<p style="text-shadow: 3px 3px 1px #B0E980">Text here.</p>
This text has shadow with #B0E980 color.
.textShadow {text-shadow: 3px 3px 1px #B0E980, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B0E980, 5px 5px 20px red">Text here.</p>
This text has shadow with #B0E980 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B0E980, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B0E980, Direction=45, Strength=4)">Text</p>
This text has shadow with #B0E980 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B0E980; -webkit-box-shadow: 1px 1px 3px 2px #B0E980; box-shadow: 1px 1px 3px 2px #B0E980; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B0E980; -webkit-box-shadow: 1px 1px 3px 2px #B0E980; box-shadow:1px 1px 3px 2px #B0E980;">
Div content here</div>
This text has color #B0E980 on black background.
This text has color #B0E980 on white background.
This text has black color on #B0E980 background.
This text has white color on #B0E980 background.