HEX: #B0ACDD
RGB: (176,172,221)
#B0ACDD contains red, green and blue colors in about the same proportion. Web safe color of #B0ACDD is #9999CC (or #99C).
#B0ACDD color RGB value is (176,172,221).
RGB: (176,172,221) (69%,67%,87%)
R 176 of 255 = 69%
G 172 of 255 = 67%
B 221 of 255 = 87%
R + G + B ~ 74%. #B0ACDD is quite light color.
R + G + B =
176 + 172 + 221 = 569 (100%)
R 176 of 569 ~ 30.93%
G 172 of 569 ~ 30.23%
B 221 of 569 ~ 38.84%
#B0ACDD color CMYK value is (20,22,0,13).
CMYK: (20,22,0,13) C20M22Y0K13 (20%,22%,0%,13%) (0.20/0.22/0.00/0.13)
B0 | AC | DD | |
---|---|---|---|
RGB | 176 | 172 | 221 |
HSL | 245° | 41.88% | 77.06% |
HSB/HSV | 245° | 22.17% | 86.67% |
CMYK | 20.36% | 22.17% | 0.00% |
13.33% |
HEX | B0 | AC | DD |
Decimal | 176 | 172 | 221 |
Binary | 10110000 | 10101100 | 11011101 |
Octal | 260 | 254 | 335 |
Examples of css and html codes for elements with #B0ACDD color. Also use rgb(176,172,221) instead hex code.
.myTextColor { color: #B0ACDD; }
<p style="color:#B0ACDD">This sample text font color is #B0ACDD.</p>
This text font color is #B0ACDD.
.myBgColor { background-color: #B0ACDD; }
<div style="background-color:#B0ACDD">Inner text</div>
This div background color is #B0ACDD.
.myBorderColor { border: 1px solid #B0ACDD; }
<div style="border:3px solid #B0ACDD">Div</div>
This div border color is #B0ACDD.
.myOpacity80 { color: #B0ACDD; opacity: 0.8; }
<p style="color:#B0ACDD;opacity:0.8;">80%</p>
Text with #B0ACDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B0ACDD;}
<p style="text-shadow: 3px 3px 1px #B0ACDD">Text here.</p>
This text has shadow with #B0ACDD color.
.textShadow {text-shadow: 3px 3px 1px #B0ACDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B0ACDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #B0ACDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B0ACDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B0ACDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #B0ACDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B0ACDD; -webkit-box-shadow: 1px 1px 3px 2px #B0ACDD; box-shadow: 1px 1px 3px 2px #B0ACDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B0ACDD; -webkit-box-shadow: 1px 1px 3px 2px #B0ACDD; box-shadow:1px 1px 3px 2px #B0ACDD;">
Div content here</div>
This text has color #B0ACDD on black background.
This text has color #B0ACDD on white background.
This text has black color on #B0ACDD background.
This text has white color on #B0ACDD background.