HEX: #B5D96E
RGB: (181,217,110)
#B5D96E contains mainly red and green colors. Web safe color of #B5D96E is #CCCC66 (or #CC6).
#B5D96E color RGB value is (181,217,110).
RGB: (181,217,110) (71%,85%,43%)
R 181 of 255 = 71%
G 217 of 255 = 85%
B 110 of 255 = 43%
R + G + B ~ 66%. #B5D96E is quite light color.
R + G + B =
181 + 217 + 110 = 508 (100%)
R 181 of 508 ~ 35.63%
G 217 of 508 ~ 42.72%
B 110 of 508 ~ 21.65%
#B5D96E color CMYK value is (17,0,49,15).
CMYK: (17,0,49,15) C17M0Y49K15 (17%,0%,49%,15%) (0.17/0.00/0.49/0.15)
B5 | D9 | 6E | |
---|---|---|---|
RGB | 181 | 217 | 110 |
HSL | 80° | 58.47% | 64.12% |
HSB/HSV | 80° | 49.31% | 85.10% |
CMYK | 16.59% | 0.00% | 49.31% |
14.90% |
HEX | B5 | D9 | 6E |
Decimal | 181 | 217 | 110 |
Binary | 10110101 | 11011001 | 1101110 |
Octal | 265 | 331 | 156 |
Examples of css and html codes for elements with #B5D96E color. Also use rgb(181,217,110) instead hex code.
.myTextColor { color: #B5D96E; }
<p style="color:#B5D96E">This sample text font color is #B5D96E.</p>
This text font color is #B5D96E.
.myBgColor { background-color: #B5D96E; }
<div style="background-color:#B5D96E">Inner text</div>
This div background color is #B5D96E.
.myBorderColor { border: 1px solid #B5D96E; }
<div style="border:3px solid #B5D96E">Div</div>
This div border color is #B5D96E.
.myOpacity80 { color: #B5D96E; opacity: 0.8; }
<p style="color:#B5D96E;opacity:0.8;">80%</p>
Text with #B5D96E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B5D96E;}
<p style="text-shadow: 3px 3px 1px #B5D96E">Text here.</p>
This text has shadow with #B5D96E color.
.textShadow {text-shadow: 3px 3px 1px #B5D96E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B5D96E, 5px 5px 20px red">Text here.</p>
This text has shadow with #B5D96E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B5D96E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B5D96E, Direction=45, Strength=4)">Text</p>
This text has shadow with #B5D96E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B5D96E; -webkit-box-shadow: 1px 1px 3px 2px #B5D96E; box-shadow: 1px 1px 3px 2px #B5D96E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B5D96E; -webkit-box-shadow: 1px 1px 3px 2px #B5D96E; box-shadow:1px 1px 3px 2px #B5D96E;">
Div content here</div>
This text has color #B5D96E on black background.
This text has color #B5D96E on white background.
This text has black color on #B5D96E background.
This text has white color on #B5D96E background.