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