HEX: #BB8BBB
RGB: (187,139,187)
#BB8BBB contains red, green and blue colors in about the same proportion. Web safe color of #BB8BBB is #CC99CC (or #C9C).
#BB8BBB color RGB value is (187,139,187).
RGB: (187,139,187) (73%,55%,73%)
R 187 of 255 = 73%
G 139 of 255 = 55%
B 187 of 255 = 73%
R + G + B ~ 67%. #BB8BBB is quite light color.
R + G + B =
187 + 139 + 187 = 513 (100%)
R 187 of 513 ~ 36.45%
G 139 of 513 ~ 27.1%
B 187 of 513 ~ 36.45%
#BB8BBB color CMYK value is (0,26,0,27).
CMYK: (0,26,0,27) C0M26Y0K27 (0%,26%,0%,27%) (0.00/0.26/0.00/0.27)
BB | 8B | BB | |
---|---|---|---|
RGB | 187 | 139 | 187 |
HSL | 300° | 26.09% | 63.92% |
HSB/HSV | 300° | 25.67% | 73.33% |
CMYK | 0.00% | 25.67% | 0.00% |
26.67% |
HEX | BB | 8B | BB |
Decimal | 187 | 139 | 187 |
Binary | 10111011 | 10001011 | 10111011 |
Octal | 273 | 213 | 273 |
Examples of css and html codes for elements with #BB8BBB color. Also use rgb(187,139,187) instead hex code.
.myTextColor { color: #BB8BBB; }
<p style="color:#BB8BBB">This sample text font color is #BB8BBB.</p>
This text font color is #BB8BBB.
.myBgColor { background-color: #BB8BBB; }
<div style="background-color:#BB8BBB">Inner text</div>
This div background color is #BB8BBB.
.myBorderColor { border: 1px solid #BB8BBB; }
<div style="border:3px solid #BB8BBB">Div</div>
This div border color is #BB8BBB.
.myOpacity80 { color: #BB8BBB; opacity: 0.8; }
<p style="color:#BB8BBB;opacity:0.8;">80%</p>
Text with #BB8BBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB8BBB;}
<p style="text-shadow: 3px 3px 1px #BB8BBB">Text here.</p>
This text has shadow with #BB8BBB color.
.textShadow {text-shadow: 3px 3px 1px #BB8BBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB8BBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB8BBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB8BBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB8BBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB8BBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB8BBB; -webkit-box-shadow: 1px 1px 3px 2px #BB8BBB; box-shadow: 1px 1px 3px 2px #BB8BBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB8BBB; -webkit-box-shadow: 1px 1px 3px 2px #BB8BBB; box-shadow:1px 1px 3px 2px #BB8BBB;">
Div content here</div>
This text has color #BB8BBB on black background.
This text has color #BB8BBB on white background.
This text has black color on #BB8BBB background.
This text has white color on #BB8BBB background.