HEX: #B6DEB9
RGB: (182,222,185)
#B6DEB9 contains red, green and blue colors in about the same proportion. Web safe color of #B6DEB9 is #CCCCCC (or #CCC).
#B6DEB9 color RGB value is (182,222,185).
RGB: (182,222,185) (71%,87%,73%)
R 182 of 255 = 71%
G 222 of 255 = 87%
B 185 of 255 = 73%
R + G + B ~ 77%. #B6DEB9 is quite light color.
R + G + B =
182 + 222 + 185 = 589 (100%)
R 182 of 589 ~ 30.9%
G 222 of 589 ~ 37.69%
B 185 of 589 ~ 31.41%
#B6DEB9 color CMYK value is (18,0,17,13).
CMYK: (18,0,17,13) C18M0Y17K13 (18%,0%,17%,13%) (0.18/0.00/0.17/0.13)
B6 | DE | B9 | |
---|---|---|---|
RGB | 182 | 222 | 185 |
HSL | 125° | 37.74% | 79.22% |
HSB/HSV | 125° | 18.02% | 87.06% |
CMYK | 18.02% | 0.00% | 16.67% |
12.94% |
HEX | B6 | DE | B9 |
Decimal | 182 | 222 | 185 |
Binary | 10110110 | 11011110 | 10111001 |
Octal | 266 | 336 | 271 |
Examples of css and html codes for elements with #B6DEB9 color. Also use rgb(182,222,185) instead hex code.
.myTextColor { color: #B6DEB9; }
<p style="color:#B6DEB9">This sample text font color is #B6DEB9.</p>
This text font color is #B6DEB9.
.myBgColor { background-color: #B6DEB9; }
<div style="background-color:#B6DEB9">Inner text</div>
This div background color is #B6DEB9.
.myBorderColor { border: 1px solid #B6DEB9; }
<div style="border:3px solid #B6DEB9">Div</div>
This div border color is #B6DEB9.
.myOpacity80 { color: #B6DEB9; opacity: 0.8; }
<p style="color:#B6DEB9;opacity:0.8;">80%</p>
Text with #B6DEB9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B6DEB9;}
<p style="text-shadow: 3px 3px 1px #B6DEB9">Text here.</p>
This text has shadow with #B6DEB9 color.
.textShadow {text-shadow: 3px 3px 1px #B6DEB9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B6DEB9, 5px 5px 20px red">Text here.</p>
This text has shadow with #B6DEB9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B6DEB9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B6DEB9, Direction=45, Strength=4)">Text</p>
This text has shadow with #B6DEB9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B6DEB9; -webkit-box-shadow: 1px 1px 3px 2px #B6DEB9; box-shadow: 1px 1px 3px 2px #B6DEB9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B6DEB9; -webkit-box-shadow: 1px 1px 3px 2px #B6DEB9; box-shadow:1px 1px 3px 2px #B6DEB9;">
Div content here</div>
This text has color #B6DEB9 on black background.
This text has color #B6DEB9 on white background.
This text has black color on #B6DEB9 background.
This text has white color on #B6DEB9 background.