HEX: #BB9BAA
RGB: (187,155,170)
#BB9BAA contains red, green and blue colors in about the same proportion. Web safe color of #BB9BAA is #CC9999 (or #C99).
#BB9BAA color RGB value is (187,155,170).
RGB: (187,155,170) (73%,61%,67%)
R 187 of 255 = 73%
G 155 of 255 = 61%
B 170 of 255 = 67%
R + G + B ~ 67%. #BB9BAA is quite light color.
R + G + B =
187 + 155 + 170 = 512 (100%)
R 187 of 512 ~ 36.52%
G 155 of 512 ~ 30.27%
B 170 of 512 ~ 33.2%
#BB9BAA color CMYK value is (0,17,9,27).
CMYK: (0,17,9,27) C0M17Y9K27 (0%,17%,9%,27%) (0.00/0.17/0.09/0.27)
BB | 9B | AA | |
---|---|---|---|
RGB | 187 | 155 | 170 |
HSL | 332° | 19.05% | 67.06% |
HSB/HSV | 332° | 17.11% | 73.33% |
CMYK | 0.00% | 17.11% | 9.09% |
26.67% |
HEX | BB | 9B | AA |
Decimal | 187 | 155 | 170 |
Binary | 10111011 | 10011011 | 10101010 |
Octal | 273 | 233 | 252 |
Examples of css and html codes for elements with #BB9BAA color. Also use rgb(187,155,170) instead hex code.
.myTextColor { color: #BB9BAA; }
<p style="color:#BB9BAA">This sample text font color is #BB9BAA.</p>
This text font color is #BB9BAA.
.myBgColor { background-color: #BB9BAA; }
<div style="background-color:#BB9BAA">Inner text</div>
This div background color is #BB9BAA.
.myBorderColor { border: 1px solid #BB9BAA; }
<div style="border:3px solid #BB9BAA">Div</div>
This div border color is #BB9BAA.
.myOpacity80 { color: #BB9BAA; opacity: 0.8; }
<p style="color:#BB9BAA;opacity:0.8;">80%</p>
Text with #BB9BAA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB9BAA;}
<p style="text-shadow: 3px 3px 1px #BB9BAA">Text here.</p>
This text has shadow with #BB9BAA color.
.textShadow {text-shadow: 3px 3px 1px #BB9BAA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB9BAA, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB9BAA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB9BAA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB9BAA, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB9BAA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB9BAA; -webkit-box-shadow: 1px 1px 3px 2px #BB9BAA; box-shadow: 1px 1px 3px 2px #BB9BAA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB9BAA; -webkit-box-shadow: 1px 1px 3px 2px #BB9BAA; box-shadow:1px 1px 3px 2px #BB9BAA;">
Div content here</div>
This text has color #BB9BAA on black background.
This text has color #BB9BAA on white background.
This text has black color on #BB9BAA background.
This text has white color on #BB9BAA background.