HEX: #BBACD5
RGB: (187,172,213)
#BBACD5 contains red, green and blue colors in about the same proportion. Web safe color of #BBACD5 is #CC99CC (or #C9C).
#BBACD5 color RGB value is (187,172,213).
RGB: (187,172,213) (73%,67%,84%)
R 187 of 255 = 73%
G 172 of 255 = 67%
B 213 of 255 = 84%
R + G + B ~ 75%. #BBACD5 is quite light color.
R + G + B =
187 + 172 + 213 = 572 (100%)
R 187 of 572 ~ 32.69%
G 172 of 572 ~ 30.07%
B 213 of 572 ~ 37.24%
#BBACD5 color CMYK value is (12,19,0,16).
CMYK: (12,19,0,16) C12M19Y0K16 (12%,19%,0%,16%) (0.12/0.19/0.00/0.16)
BB | AC | D5 | |
---|---|---|---|
RGB | 187 | 172 | 213 |
HSL | 262° | 32.80% | 75.49% |
HSB/HSV | 262° | 19.25% | 83.53% |
CMYK | 12.21% | 19.25% | 0.00% |
16.47% |
HEX | BB | AC | D5 |
Decimal | 187 | 172 | 213 |
Binary | 10111011 | 10101100 | 11010101 |
Octal | 273 | 254 | 325 |
Examples of css and html codes for elements with #BBACD5 color. Also use rgb(187,172,213) instead hex code.
.myTextColor { color: #BBACD5; }
<p style="color:#BBACD5">This sample text font color is #BBACD5.</p>
This text font color is #BBACD5.
.myBgColor { background-color: #BBACD5; }
<div style="background-color:#BBACD5">Inner text</div>
This div background color is #BBACD5.
.myBorderColor { border: 1px solid #BBACD5; }
<div style="border:3px solid #BBACD5">Div</div>
This div border color is #BBACD5.
.myOpacity80 { color: #BBACD5; opacity: 0.8; }
<p style="color:#BBACD5;opacity:0.8;">80%</p>
Text with #BBACD5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BBACD5;}
<p style="text-shadow: 3px 3px 1px #BBACD5">Text here.</p>
This text has shadow with #BBACD5 color.
.textShadow {text-shadow: 3px 3px 1px #BBACD5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BBACD5, 5px 5px 20px red">Text here.</p>
This text has shadow with #BBACD5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BBACD5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BBACD5, Direction=45, Strength=4)">Text</p>
This text has shadow with #BBACD5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BBACD5; -webkit-box-shadow: 1px 1px 3px 2px #BBACD5; box-shadow: 1px 1px 3px 2px #BBACD5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BBACD5; -webkit-box-shadow: 1px 1px 3px 2px #BBACD5; box-shadow:1px 1px 3px 2px #BBACD5;">
Div content here</div>
This text has color #BBACD5 on black background.
This text has color #BBACD5 on white background.
This text has black color on #BBACD5 background.
This text has white color on #BBACD5 background.