HEX: #BBC6AE
RGB: (187,198,174)
#BBC6AE contains red, green and blue colors in about the same proportion. Web safe color of #BBC6AE is #CCCC99 (or #CC9).
#BBC6AE color RGB value is (187,198,174).
RGB: (187,198,174) (73%,78%,68%)
R 187 of 255 = 73%
G 198 of 255 = 78%
B 174 of 255 = 68%
R + G + B ~ 73%. #BBC6AE is quite light color.
R + G + B =
187 + 198 + 174 = 559 (100%)
R 187 of 559 ~ 33.45%
G 198 of 559 ~ 35.42%
B 174 of 559 ~ 31.13%
#BBC6AE color CMYK value is (6,0,12,22).
CMYK: (6,0,12,22) C6M0Y12K22 (6%,0%,12%,22%) (0.06/0.00/0.12/0.22)
BB | C6 | AE | |
---|---|---|---|
RGB | 187 | 198 | 174 |
HSL | 88° | 17.39% | 72.94% |
HSB/HSV | 88° | 12.12% | 77.65% |
CMYK | 5.56% | 0.00% | 12.12% |
22.35% |
HEX | BB | C6 | AE |
Decimal | 187 | 198 | 174 |
Binary | 10111011 | 11000110 | 10101110 |
Octal | 273 | 306 | 256 |
Examples of css and html codes for elements with #BBC6AE color. Also use rgb(187,198,174) instead hex code.
.myTextColor { color: #BBC6AE; }
<p style="color:#BBC6AE">This sample text font color is #BBC6AE.</p>
This text font color is #BBC6AE.
.myBgColor { background-color: #BBC6AE; }
<div style="background-color:#BBC6AE">Inner text</div>
This div background color is #BBC6AE.
.myBorderColor { border: 1px solid #BBC6AE; }
<div style="border:3px solid #BBC6AE">Div</div>
This div border color is #BBC6AE.
.myOpacity80 { color: #BBC6AE; opacity: 0.8; }
<p style="color:#BBC6AE;opacity:0.8;">80%</p>
Text with #BBC6AE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BBC6AE;}
<p style="text-shadow: 3px 3px 1px #BBC6AE">Text here.</p>
This text has shadow with #BBC6AE color.
.textShadow {text-shadow: 3px 3px 1px #BBC6AE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BBC6AE, 5px 5px 20px red">Text here.</p>
This text has shadow with #BBC6AE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BBC6AE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BBC6AE, Direction=45, Strength=4)">Text</p>
This text has shadow with #BBC6AE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BBC6AE; -webkit-box-shadow: 1px 1px 3px 2px #BBC6AE; box-shadow: 1px 1px 3px 2px #BBC6AE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BBC6AE; -webkit-box-shadow: 1px 1px 3px 2px #BBC6AE; box-shadow:1px 1px 3px 2px #BBC6AE;">
Div content here</div>
This text has color #BBC6AE on black background.
This text has color #BBC6AE on white background.
This text has black color on #BBC6AE background.
This text has white color on #BBC6AE background.