HEX: #B9ACBD
RGB: (185,172,189)
#B9ACBD contains red, green and blue colors in about the same proportion. Web safe color of #B9ACBD is #CC99CC (or #C9C).
#B9ACBD color RGB value is (185,172,189).
RGB: (185,172,189) (73%,67%,74%)
R 185 of 255 = 73%
G 172 of 255 = 67%
B 189 of 255 = 74%
R + G + B ~ 71%. #B9ACBD is quite light color.
R + G + B =
185 + 172 + 189 = 546 (100%)
R 185 of 546 ~ 33.88%
G 172 of 546 ~ 31.5%
B 189 of 546 ~ 34.62%
#B9ACBD color CMYK value is (2,9,0,26).
CMYK: (2,9,0,26) C2M9Y0K26 (2%,9%,0%,26%) (0.02/0.09/0.00/0.26)
B9 | AC | BD | |
---|---|---|---|
RGB | 185 | 172 | 189 |
HSL | 286° | 11.41% | 70.78% |
HSB/HSV | 286° | 8.99% | 74.12% |
CMYK | 2.12% | 8.99% | 0.00% |
25.88% |
HEX | B9 | AC | BD |
Decimal | 185 | 172 | 189 |
Binary | 10111001 | 10101100 | 10111101 |
Octal | 271 | 254 | 275 |
Examples of css and html codes for elements with #B9ACBD color. Also use rgb(185,172,189) instead hex code.
.myTextColor { color: #B9ACBD; }
<p style="color:#B9ACBD">This sample text font color is #B9ACBD.</p>
This text font color is #B9ACBD.
.myBgColor { background-color: #B9ACBD; }
<div style="background-color:#B9ACBD">Inner text</div>
This div background color is #B9ACBD.
.myBorderColor { border: 1px solid #B9ACBD; }
<div style="border:3px solid #B9ACBD">Div</div>
This div border color is #B9ACBD.
.myOpacity80 { color: #B9ACBD; opacity: 0.8; }
<p style="color:#B9ACBD;opacity:0.8;">80%</p>
Text with #B9ACBD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B9ACBD;}
<p style="text-shadow: 3px 3px 1px #B9ACBD">Text here.</p>
This text has shadow with #B9ACBD color.
.textShadow {text-shadow: 3px 3px 1px #B9ACBD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B9ACBD, 5px 5px 20px red">Text here.</p>
This text has shadow with #B9ACBD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B9ACBD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B9ACBD, Direction=45, Strength=4)">Text</p>
This text has shadow with #B9ACBD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B9ACBD; -webkit-box-shadow: 1px 1px 3px 2px #B9ACBD; box-shadow: 1px 1px 3px 2px #B9ACBD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B9ACBD; -webkit-box-shadow: 1px 1px 3px 2px #B9ACBD; box-shadow:1px 1px 3px 2px #B9ACBD;">
Div content here</div>
This text has color #B9ACBD on black background.
This text has color #B9ACBD on white background.
This text has black color on #B9ACBD background.
This text has white color on #B9ACBD background.