HEX: #B9DF6E
RGB: (185,223,110)
#B9DF6E contains mainly red and green colors. Web safe color of #B9DF6E is #CCCC66 (or #CC6).
#B9DF6E color RGB value is (185,223,110).
RGB: (185,223,110) (73%,87%,43%)
R 185 of 255 = 73%
G 223 of 255 = 87%
B 110 of 255 = 43%
R + G + B ~ 68%. #B9DF6E is quite light color.
R + G + B =
185 + 223 + 110 = 518 (100%)
R 185 of 518 ~ 35.71%
G 223 of 518 ~ 43.05%
B 110 of 518 ~ 21.24%
#B9DF6E color CMYK value is (17,0,51,13).
CMYK: (17,0,51,13) C17M0Y51K13 (17%,0%,51%,13%) (0.17/0.00/0.51/0.13)
B9 | DF | 6E | |
---|---|---|---|
RGB | 185 | 223 | 110 |
HSL | 80° | 63.84% | 65.29% |
HSB/HSV | 80° | 50.67% | 87.45% |
CMYK | 17.04% | 0.00% | 50.67% |
12.55% |
HEX | B9 | DF | 6E |
Decimal | 185 | 223 | 110 |
Binary | 10111001 | 11011111 | 1101110 |
Octal | 271 | 337 | 156 |
Examples of css and html codes for elements with #B9DF6E color. Also use rgb(185,223,110) instead hex code.
.myTextColor { color: #B9DF6E; }
<p style="color:#B9DF6E">This sample text font color is #B9DF6E.</p>
This text font color is #B9DF6E.
.myBgColor { background-color: #B9DF6E; }
<div style="background-color:#B9DF6E">Inner text</div>
This div background color is #B9DF6E.
.myBorderColor { border: 1px solid #B9DF6E; }
<div style="border:3px solid #B9DF6E">Div</div>
This div border color is #B9DF6E.
.myOpacity80 { color: #B9DF6E; opacity: 0.8; }
<p style="color:#B9DF6E;opacity:0.8;">80%</p>
Text with #B9DF6E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B9DF6E;}
<p style="text-shadow: 3px 3px 1px #B9DF6E">Text here.</p>
This text has shadow with #B9DF6E color.
.textShadow {text-shadow: 3px 3px 1px #B9DF6E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B9DF6E, 5px 5px 20px red">Text here.</p>
This text has shadow with #B9DF6E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B9DF6E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B9DF6E, Direction=45, Strength=4)">Text</p>
This text has shadow with #B9DF6E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B9DF6E; -webkit-box-shadow: 1px 1px 3px 2px #B9DF6E; box-shadow: 1px 1px 3px 2px #B9DF6E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B9DF6E; -webkit-box-shadow: 1px 1px 3px 2px #B9DF6E; box-shadow:1px 1px 3px 2px #B9DF6E;">
Div content here</div>
This text has color #B9DF6E on black background.
This text has color #B9DF6E on white background.
This text has black color on #B9DF6E background.
This text has white color on #B9DF6E background.