HEX: #B09CBB
RGB: (176,156,187)
#B09CBB contains red, green and blue colors in about the same proportion. Web safe color of #B09CBB is #9999CC (or #99C).
#B09CBB color RGB value is (176,156,187).
RGB: (176,156,187) (69%,61%,73%)
R 176 of 255 = 69%
G 156 of 255 = 61%
B 187 of 255 = 73%
R + G + B ~ 68%. #B09CBB is quite light color.
R + G + B =
176 + 156 + 187 = 519 (100%)
R 176 of 519 ~ 33.91%
G 156 of 519 ~ 30.06%
B 187 of 519 ~ 36.03%
#B09CBB color CMYK value is (6,17,0,27).
CMYK: (6,17,0,27) C6M17Y0K27 (6%,17%,0%,27%) (0.06/0.17/0.00/0.27)
B0 | 9C | BB | |
---|---|---|---|
RGB | 176 | 156 | 187 |
HSL | 279° | 18.56% | 67.25% |
HSB/HSV | 279° | 16.58% | 73.33% |
CMYK | 5.88% | 16.58% | 0.00% |
26.67% |
HEX | B0 | 9C | BB |
Decimal | 176 | 156 | 187 |
Binary | 10110000 | 10011100 | 10111011 |
Octal | 260 | 234 | 273 |
Examples of css and html codes for elements with #B09CBB color. Also use rgb(176,156,187) instead hex code.
.myTextColor { color: #B09CBB; }
<p style="color:#B09CBB">This sample text font color is #B09CBB.</p>
This text font color is #B09CBB.
.myBgColor { background-color: #B09CBB; }
<div style="background-color:#B09CBB">Inner text</div>
This div background color is #B09CBB.
.myBorderColor { border: 1px solid #B09CBB; }
<div style="border:3px solid #B09CBB">Div</div>
This div border color is #B09CBB.
.myOpacity80 { color: #B09CBB; opacity: 0.8; }
<p style="color:#B09CBB;opacity:0.8;">80%</p>
Text with #B09CBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B09CBB;}
<p style="text-shadow: 3px 3px 1px #B09CBB">Text here.</p>
This text has shadow with #B09CBB color.
.textShadow {text-shadow: 3px 3px 1px #B09CBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B09CBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #B09CBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B09CBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B09CBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #B09CBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B09CBB; -webkit-box-shadow: 1px 1px 3px 2px #B09CBB; box-shadow: 1px 1px 3px 2px #B09CBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B09CBB; -webkit-box-shadow: 1px 1px 3px 2px #B09CBB; box-shadow:1px 1px 3px 2px #B09CBB;">
Div content here</div>
This text has color #B09CBB on black background.
This text has color #B09CBB on white background.
This text has black color on #B09CBB background.
This text has white color on #B09CBB background.