HEX: #B1A0DD
RGB: (177,160,221)
#B1A0DD contains mainly red and blue colors. Web safe color of #B1A0DD is #9999CC (or #99C).
#B1A0DD color RGB value is (177,160,221).
RGB: (177,160,221) (69%,63%,87%)
R 177 of 255 = 69%
G 160 of 255 = 63%
B 221 of 255 = 87%
R + G + B ~ 73%. #B1A0DD is quite light color.
R + G + B =
177 + 160 + 221 = 558 (100%)
R 177 of 558 ~ 31.72%
G 160 of 558 ~ 28.67%
B 221 of 558 ~ 39.61%
#B1A0DD color CMYK value is (20,28,0,13).
CMYK: (20,28,0,13) C20M28Y0K13 (20%,28%,0%,13%) (0.20/0.28/0.00/0.13)
B1 | A0 | DD | |
---|---|---|---|
RGB | 177 | 160 | 221 |
HSL | 257° | 47.29% | 74.71% |
HSB/HSV | 257° | 27.60% | 86.67% |
CMYK | 19.91% | 27.60% | 0.00% |
13.33% |
HEX | B1 | A0 | DD |
Decimal | 177 | 160 | 221 |
Binary | 10110001 | 10100000 | 11011101 |
Octal | 261 | 240 | 335 |
Examples of css and html codes for elements with #B1A0DD color. Also use rgb(177,160,221) instead hex code.
.myTextColor { color: #B1A0DD; }
<p style="color:#B1A0DD">This sample text font color is #B1A0DD.</p>
This text font color is #B1A0DD.
.myBgColor { background-color: #B1A0DD; }
<div style="background-color:#B1A0DD">Inner text</div>
This div background color is #B1A0DD.
.myBorderColor { border: 1px solid #B1A0DD; }
<div style="border:3px solid #B1A0DD">Div</div>
This div border color is #B1A0DD.
.myOpacity80 { color: #B1A0DD; opacity: 0.8; }
<p style="color:#B1A0DD;opacity:0.8;">80%</p>
Text with #B1A0DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B1A0DD;}
<p style="text-shadow: 3px 3px 1px #B1A0DD">Text here.</p>
This text has shadow with #B1A0DD color.
.textShadow {text-shadow: 3px 3px 1px #B1A0DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B1A0DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #B1A0DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B1A0DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B1A0DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #B1A0DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B1A0DD; -webkit-box-shadow: 1px 1px 3px 2px #B1A0DD; box-shadow: 1px 1px 3px 2px #B1A0DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B1A0DD; -webkit-box-shadow: 1px 1px 3px 2px #B1A0DD; box-shadow:1px 1px 3px 2px #B1A0DD;">
Div content here</div>
This text has color #B1A0DD on black background.
This text has color #B1A0DD on white background.
This text has black color on #B1A0DD background.
This text has white color on #B1A0DD background.