HEX: #B9B1CC
RGB: (185,177,204)
#B9B1CC contains red, green and blue colors in about the same proportion. Web safe color of #B9B1CC is #CC99CC (or #C9C).
#B9B1CC color RGB value is (185,177,204).
RGB: (185,177,204) (73%,69%,80%)
R 185 of 255 = 73%
G 177 of 255 = 69%
B 204 of 255 = 80%
R + G + B ~ 74%. #B9B1CC is quite light color.
R + G + B =
185 + 177 + 204 = 566 (100%)
R 185 of 566 ~ 32.69%
G 177 of 566 ~ 31.27%
B 204 of 566 ~ 36.04%
#B9B1CC color CMYK value is (9,13,0,20).
CMYK: (9,13,0,20) C9M13Y0K20 (9%,13%,0%,20%) (0.09/0.13/0.00/0.20)
B9 | B1 | CC | |
---|---|---|---|
RGB | 185 | 177 | 204 |
HSL | 258° | 20.93% | 74.71% |
HSB/HSV | 258° | 13.24% | 80.00% |
CMYK | 9.31% | 13.24% | 0.00% |
20.00% |
HEX | B9 | B1 | CC |
Decimal | 185 | 177 | 204 |
Binary | 10111001 | 10110001 | 11001100 |
Octal | 271 | 261 | 314 |
Examples of css and html codes for elements with #B9B1CC color. Also use rgb(185,177,204) instead hex code.
.myTextColor { color: #B9B1CC; }
<p style="color:#B9B1CC">This sample text font color is #B9B1CC.</p>
This text font color is #B9B1CC.
.myBgColor { background-color: #B9B1CC; }
<div style="background-color:#B9B1CC">Inner text</div>
This div background color is #B9B1CC.
.myBorderColor { border: 1px solid #B9B1CC; }
<div style="border:3px solid #B9B1CC">Div</div>
This div border color is #B9B1CC.
.myOpacity80 { color: #B9B1CC; opacity: 0.8; }
<p style="color:#B9B1CC;opacity:0.8;">80%</p>
Text with #B9B1CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B9B1CC;}
<p style="text-shadow: 3px 3px 1px #B9B1CC">Text here.</p>
This text has shadow with #B9B1CC color.
.textShadow {text-shadow: 3px 3px 1px #B9B1CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B9B1CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #B9B1CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B9B1CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B9B1CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #B9B1CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B9B1CC; -webkit-box-shadow: 1px 1px 3px 2px #B9B1CC; box-shadow: 1px 1px 3px 2px #B9B1CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B9B1CC; -webkit-box-shadow: 1px 1px 3px 2px #B9B1CC; box-shadow:1px 1px 3px 2px #B9B1CC;">
Div content here</div>
This text has color #B9B1CC on black background.
This text has color #B9B1CC on white background.
This text has black color on #B9B1CC background.
This text has white color on #B9B1CC background.