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