HEX: #BB849D
RGB: (187,132,157)
#BB849D contains red, green and blue colors in about the same proportion. Web safe color of #BB849D is #CC9999 (or #C99).
#BB849D color RGB value is (187,132,157).
RGB: (187,132,157) (73%,52%,62%)
R 187 of 255 = 73%
G 132 of 255 = 52%
B 157 of 255 = 62%
R + G + B ~ 62%. #BB849D is quite light color.
R + G + B =
187 + 132 + 157 = 476 (100%)
R 187 of 476 ~ 39.29%
G 132 of 476 ~ 27.73%
B 157 of 476 ~ 32.98%
#BB849D color CMYK value is (0,29,16,27).
CMYK: (0,29,16,27) C0M29Y16K27 (0%,29%,16%,27%) (0.00/0.29/0.16/0.27)
BB | 84 | 9D | |
---|---|---|---|
RGB | 187 | 132 | 157 |
HSL | 333° | 28.80% | 62.55% |
HSB/HSV | 333° | 29.41% | 73.33% |
CMYK | 0.00% | 29.41% | 16.04% |
26.67% |
HEX | BB | 84 | 9D |
Decimal | 187 | 132 | 157 |
Binary | 10111011 | 10000100 | 10011101 |
Octal | 273 | 204 | 235 |
Examples of css and html codes for elements with #BB849D color. Also use rgb(187,132,157) instead hex code.
.myTextColor { color: #BB849D; }
<p style="color:#BB849D">This sample text font color is #BB849D.</p>
This text font color is #BB849D.
.myBgColor { background-color: #BB849D; }
<div style="background-color:#BB849D">Inner text</div>
This div background color is #BB849D.
.myBorderColor { border: 1px solid #BB849D; }
<div style="border:3px solid #BB849D">Div</div>
This div border color is #BB849D.
.myOpacity80 { color: #BB849D; opacity: 0.8; }
<p style="color:#BB849D;opacity:0.8;">80%</p>
Text with #BB849D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB849D;}
<p style="text-shadow: 3px 3px 1px #BB849D">Text here.</p>
This text has shadow with #BB849D color.
.textShadow {text-shadow: 3px 3px 1px #BB849D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB849D, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB849D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB849D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB849D, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB849D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB849D; -webkit-box-shadow: 1px 1px 3px 2px #BB849D; box-shadow: 1px 1px 3px 2px #BB849D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB849D; -webkit-box-shadow: 1px 1px 3px 2px #BB849D; box-shadow:1px 1px 3px 2px #BB849D;">
Div content here</div>
This text has color #BB849D on black background.
This text has color #BB849D on white background.
This text has black color on #BB849D background.
This text has white color on #BB849D background.