HEX: #B1A7DE
RGB: (177,167,222)
#B1A7DE contains red, green and blue colors in about the same proportion. Web safe color of #B1A7DE is #9999CC (or #99C).
#B1A7DE color RGB value is (177,167,222).
RGB: (177,167,222) (69%,65%,87%)
R 177 of 255 = 69%
G 167 of 255 = 65%
B 222 of 255 = 87%
R + G + B ~ 74%. #B1A7DE is quite light color.
R + G + B =
177 + 167 + 222 = 566 (100%)
R 177 of 566 ~ 31.27%
G 167 of 566 ~ 29.51%
B 222 of 566 ~ 39.22%
#B1A7DE color CMYK value is (20,25,0,13).
CMYK: (20,25,0,13) C20M25Y0K13 (20%,25%,0%,13%) (0.20/0.25/0.00/0.13)
B1 | A7 | DE | |
---|---|---|---|
RGB | 177 | 167 | 222 |
HSL | 251° | 45.45% | 76.27% |
HSB/HSV | 251° | 24.77% | 87.06% |
CMYK | 20.27% | 24.77% | 0.00% |
12.94% |
HEX | B1 | A7 | DE |
Decimal | 177 | 167 | 222 |
Binary | 10110001 | 10100111 | 11011110 |
Octal | 261 | 247 | 336 |
Examples of css and html codes for elements with #B1A7DE color. Also use rgb(177,167,222) instead hex code.
.myTextColor { color: #B1A7DE; }
<p style="color:#B1A7DE">This sample text font color is #B1A7DE.</p>
This text font color is #B1A7DE.
.myBgColor { background-color: #B1A7DE; }
<div style="background-color:#B1A7DE">Inner text</div>
This div background color is #B1A7DE.
.myBorderColor { border: 1px solid #B1A7DE; }
<div style="border:3px solid #B1A7DE">Div</div>
This div border color is #B1A7DE.
.myOpacity80 { color: #B1A7DE; opacity: 0.8; }
<p style="color:#B1A7DE;opacity:0.8;">80%</p>
Text with #B1A7DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B1A7DE;}
<p style="text-shadow: 3px 3px 1px #B1A7DE">Text here.</p>
This text has shadow with #B1A7DE color.
.textShadow {text-shadow: 3px 3px 1px #B1A7DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B1A7DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #B1A7DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B1A7DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B1A7DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #B1A7DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B1A7DE; -webkit-box-shadow: 1px 1px 3px 2px #B1A7DE; box-shadow: 1px 1px 3px 2px #B1A7DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B1A7DE; -webkit-box-shadow: 1px 1px 3px 2px #B1A7DE; box-shadow:1px 1px 3px 2px #B1A7DE;">
Div content here</div>
This text has color #B1A7DE on black background.
This text has color #B1A7DE on white background.
This text has black color on #B1A7DE background.
This text has white color on #B1A7DE background.