HEX: #B9DCAB
RGB: (185,220,171)
#B9DCAB contains red, green and blue colors in about the same proportion. Web safe color of #B9DCAB is #CCCC99 (or #CC9).
#B9DCAB color RGB value is (185,220,171).
RGB: (185,220,171) (73%,86%,67%)
R 185 of 255 = 73%
G 220 of 255 = 86%
B 171 of 255 = 67%
R + G + B ~ 75%. #B9DCAB is quite light color.
R + G + B =
185 + 220 + 171 = 576 (100%)
R 185 of 576 ~ 32.12%
G 220 of 576 ~ 38.19%
B 171 of 576 ~ 29.69%
#B9DCAB color CMYK value is (16,0,22,14).
CMYK: (16,0,22,14) C16M0Y22K14 (16%,0%,22%,14%) (0.16/0.00/0.22/0.14)
B9 | DC | AB | |
---|---|---|---|
RGB | 185 | 220 | 171 |
HSL | 103° | 41.18% | 76.67% |
HSB/HSV | 103° | 22.27% | 86.27% |
CMYK | 15.91% | 0.00% | 22.27% |
13.73% |
HEX | B9 | DC | AB |
Decimal | 185 | 220 | 171 |
Binary | 10111001 | 11011100 | 10101011 |
Octal | 271 | 334 | 253 |
Examples of css and html codes for elements with #B9DCAB color. Also use rgb(185,220,171) instead hex code.
.myTextColor { color: #B9DCAB; }
<p style="color:#B9DCAB">This sample text font color is #B9DCAB.</p>
This text font color is #B9DCAB.
.myBgColor { background-color: #B9DCAB; }
<div style="background-color:#B9DCAB">Inner text</div>
This div background color is #B9DCAB.
.myBorderColor { border: 1px solid #B9DCAB; }
<div style="border:3px solid #B9DCAB">Div</div>
This div border color is #B9DCAB.
.myOpacity80 { color: #B9DCAB; opacity: 0.8; }
<p style="color:#B9DCAB;opacity:0.8;">80%</p>
Text with #B9DCAB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B9DCAB;}
<p style="text-shadow: 3px 3px 1px #B9DCAB">Text here.</p>
This text has shadow with #B9DCAB color.
.textShadow {text-shadow: 3px 3px 1px #B9DCAB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B9DCAB, 5px 5px 20px red">Text here.</p>
This text has shadow with #B9DCAB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B9DCAB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B9DCAB, Direction=45, Strength=4)">Text</p>
This text has shadow with #B9DCAB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B9DCAB; -webkit-box-shadow: 1px 1px 3px 2px #B9DCAB; box-shadow: 1px 1px 3px 2px #B9DCAB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B9DCAB; -webkit-box-shadow: 1px 1px 3px 2px #B9DCAB; box-shadow:1px 1px 3px 2px #B9DCAB;">
Div content here</div>
This text has color #B9DCAB on black background.
This text has color #B9DCAB on white background.
This text has black color on #B9DCAB background.
This text has white color on #B9DCAB background.