HEX: #B9D37B
RGB: (185,211,123)
#B9D37B contains mainly red and green colors. Web safe color of #B9D37B is #CCCC66 (or #CC6).
#B9D37B color RGB value is (185,211,123).
RGB: (185,211,123) (73%,83%,48%)
R 185 of 255 = 73%
G 211 of 255 = 83%
B 123 of 255 = 48%
R + G + B ~ 68%. #B9D37B is quite light color.
R + G + B =
185 + 211 + 123 = 519 (100%)
R 185 of 519 ~ 35.65%
G 211 of 519 ~ 40.66%
B 123 of 519 ~ 23.7%
#B9D37B color CMYK value is (12,0,42,17).
CMYK: (12,0,42,17) C12M0Y42K17 (12%,0%,42%,17%) (0.12/0.00/0.42/0.17)
B9 | D3 | 7B | |
---|---|---|---|
RGB | 185 | 211 | 123 |
HSL | 78° | 50.00% | 65.49% |
HSB/HSV | 78° | 41.71% | 82.75% |
CMYK | 12.32% | 0.00% | 41.71% |
17.25% |
HEX | B9 | D3 | 7B |
Decimal | 185 | 211 | 123 |
Binary | 10111001 | 11010011 | 1111011 |
Octal | 271 | 323 | 173 |
Examples of css and html codes for elements with #B9D37B color. Also use rgb(185,211,123) instead hex code.
.myTextColor { color: #B9D37B; }
<p style="color:#B9D37B">This sample text font color is #B9D37B.</p>
This text font color is #B9D37B.
.myBgColor { background-color: #B9D37B; }
<div style="background-color:#B9D37B">Inner text</div>
This div background color is #B9D37B.
.myBorderColor { border: 1px solid #B9D37B; }
<div style="border:3px solid #B9D37B">Div</div>
This div border color is #B9D37B.
.myOpacity80 { color: #B9D37B; opacity: 0.8; }
<p style="color:#B9D37B;opacity:0.8;">80%</p>
Text with #B9D37B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B9D37B;}
<p style="text-shadow: 3px 3px 1px #B9D37B">Text here.</p>
This text has shadow with #B9D37B color.
.textShadow {text-shadow: 3px 3px 1px #B9D37B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B9D37B, 5px 5px 20px red">Text here.</p>
This text has shadow with #B9D37B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B9D37B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B9D37B, Direction=45, Strength=4)">Text</p>
This text has shadow with #B9D37B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B9D37B; -webkit-box-shadow: 1px 1px 3px 2px #B9D37B; box-shadow: 1px 1px 3px 2px #B9D37B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B9D37B; -webkit-box-shadow: 1px 1px 3px 2px #B9D37B; box-shadow:1px 1px 3px 2px #B9D37B;">
Div content here</div>
This text has color #B9D37B on black background.
This text has color #B9D37B on white background.
This text has black color on #B9D37B background.
This text has white color on #B9D37B background.