HEX: #BBABBC
RGB: (187,171,188)
#BBABBC contains red, green and blue colors in about the same proportion. Web safe color of #BBABBC is #CC99CC (or #C9C).
#BBABBC color RGB value is (187,171,188).
RGB: (187,171,188) (73%,67%,74%)
R 187 of 255 = 73%
G 171 of 255 = 67%
B 188 of 255 = 74%
R + G + B ~ 71%. #BBABBC is quite light color.
R + G + B =
187 + 171 + 188 = 546 (100%)
R 187 of 546 ~ 34.25%
G 171 of 546 ~ 31.32%
B 188 of 546 ~ 34.43%
#BBABBC color CMYK value is (1,9,0,26).
CMYK: (1,9,0,26) C1M9Y0K26 (1%,9%,0%,26%) (0.01/0.09/0.00/0.26)
BB | AB | BC | |
---|---|---|---|
RGB | 187 | 171 | 188 |
HSL | 296° | 11.26% | 70.39% |
HSB/HSV | 296° | 9.04% | 73.73% |
CMYK | 0.53% | 9.04% | 0.00% |
26.27% |
HEX | BB | AB | BC |
Decimal | 187 | 171 | 188 |
Binary | 10111011 | 10101011 | 10111100 |
Octal | 273 | 253 | 274 |
Examples of css and html codes for elements with #BBABBC color. Also use rgb(187,171,188) instead hex code.
.myTextColor { color: #BBABBC; }
<p style="color:#BBABBC">This sample text font color is #BBABBC.</p>
This text font color is #BBABBC.
.myBgColor { background-color: #BBABBC; }
<div style="background-color:#BBABBC">Inner text</div>
This div background color is #BBABBC.
.myBorderColor { border: 1px solid #BBABBC; }
<div style="border:3px solid #BBABBC">Div</div>
This div border color is #BBABBC.
.myOpacity80 { color: #BBABBC; opacity: 0.8; }
<p style="color:#BBABBC;opacity:0.8;">80%</p>
Text with #BBABBC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BBABBC;}
<p style="text-shadow: 3px 3px 1px #BBABBC">Text here.</p>
This text has shadow with #BBABBC color.
.textShadow {text-shadow: 3px 3px 1px #BBABBC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BBABBC, 5px 5px 20px red">Text here.</p>
This text has shadow with #BBABBC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BBABBC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BBABBC, Direction=45, Strength=4)">Text</p>
This text has shadow with #BBABBC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BBABBC; -webkit-box-shadow: 1px 1px 3px 2px #BBABBC; box-shadow: 1px 1px 3px 2px #BBABBC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BBABBC; -webkit-box-shadow: 1px 1px 3px 2px #BBABBC; box-shadow:1px 1px 3px 2px #BBABBC;">
Div content here</div>
This text has color #BBABBC on black background.
This text has color #BBABBC on white background.
This text has black color on #BBABBC background.
This text has white color on #BBABBC background.