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