HEX: #BBAEB0
RGB: (187,174,176)
#BBAEB0 contains red, green and blue colors in about the same proportion. Web safe color of #BBAEB0 is #CC9999 (or #C99).
#BBAEB0 color RGB value is (187,174,176).
RGB: (187,174,176) (73%,68%,69%)
R 187 of 255 = 73%
G 174 of 255 = 68%
B 176 of 255 = 69%
R + G + B ~ 70%. #BBAEB0 is quite light color.
R + G + B =
187 + 174 + 176 = 537 (100%)
R 187 of 537 ~ 34.82%
G 174 of 537 ~ 32.4%
B 176 of 537 ~ 32.77%
#BBAEB0 color CMYK value is (0,7,6,27).
CMYK: (0,7,6,27) C0M7Y6K27 (0%,7%,6%,27%) (0.00/0.07/0.06/0.27)
BB | AE | B0 | |
---|---|---|---|
RGB | 187 | 174 | 176 |
HSL | 351° | 8.72% | 70.78% |
HSB/HSV | 351° | 6.95% | 73.33% |
CMYK | 0.00% | 6.95% | 5.88% |
26.67% |
HEX | BB | AE | B0 |
Decimal | 187 | 174 | 176 |
Binary | 10111011 | 10101110 | 10110000 |
Octal | 273 | 256 | 260 |
Examples of css and html codes for elements with #BBAEB0 color. Also use rgb(187,174,176) instead hex code.
.myTextColor { color: #BBAEB0; }
<p style="color:#BBAEB0">This sample text font color is #BBAEB0.</p>
This text font color is #BBAEB0.
.myBgColor { background-color: #BBAEB0; }
<div style="background-color:#BBAEB0">Inner text</div>
This div background color is #BBAEB0.
.myBorderColor { border: 1px solid #BBAEB0; }
<div style="border:3px solid #BBAEB0">Div</div>
This div border color is #BBAEB0.
.myOpacity80 { color: #BBAEB0; opacity: 0.8; }
<p style="color:#BBAEB0;opacity:0.8;">80%</p>
Text with #BBAEB0 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BBAEB0;}
<p style="text-shadow: 3px 3px 1px #BBAEB0">Text here.</p>
This text has shadow with #BBAEB0 color.
.textShadow {text-shadow: 3px 3px 1px #BBAEB0, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BBAEB0, 5px 5px 20px red">Text here.</p>
This text has shadow with #BBAEB0 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BBAEB0, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BBAEB0, Direction=45, Strength=4)">Text</p>
This text has shadow with #BBAEB0 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BBAEB0; -webkit-box-shadow: 1px 1px 3px 2px #BBAEB0; box-shadow: 1px 1px 3px 2px #BBAEB0; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BBAEB0; -webkit-box-shadow: 1px 1px 3px 2px #BBAEB0; box-shadow:1px 1px 3px 2px #BBAEB0;">
Div content here</div>
This text has color #BBAEB0 on black background.
This text has color #BBAEB0 on white background.
This text has black color on #BBAEB0 background.
This text has white color on #BBAEB0 background.