HEX: #B1ABBE
RGB: (177,171,190)
#B1ABBE contains red, green and blue colors in about the same proportion. Web safe color of #B1ABBE is #9999CC (or #99C).
#B1ABBE color RGB value is (177,171,190).
RGB: (177,171,190) (69%,67%,75%)
R 177 of 255 = 69%
G 171 of 255 = 67%
B 190 of 255 = 75%
R + G + B ~ 70%. #B1ABBE is quite light color.
R + G + B =
177 + 171 + 190 = 538 (100%)
R 177 of 538 ~ 32.9%
G 171 of 538 ~ 31.78%
B 190 of 538 ~ 35.32%
#B1ABBE color CMYK value is (7,10,0,25).
CMYK: (7,10,0,25) C7M10Y0K25 (7%,10%,0%,25%) (0.07/0.10/0.00/0.25)
B1 | AB | BE | |
---|---|---|---|
RGB | 177 | 171 | 190 |
HSL | 259° | 12.75% | 70.78% |
HSB/HSV | 259° | 10.00% | 74.51% |
CMYK | 6.84% | 10.00% | 0.00% |
25.49% |
HEX | B1 | AB | BE |
Decimal | 177 | 171 | 190 |
Binary | 10110001 | 10101011 | 10111110 |
Octal | 261 | 253 | 276 |
Examples of css and html codes for elements with #B1ABBE color. Also use rgb(177,171,190) instead hex code.
.myTextColor { color: #B1ABBE; }
<p style="color:#B1ABBE">This sample text font color is #B1ABBE.</p>
This text font color is #B1ABBE.
.myBgColor { background-color: #B1ABBE; }
<div style="background-color:#B1ABBE">Inner text</div>
This div background color is #B1ABBE.
.myBorderColor { border: 1px solid #B1ABBE; }
<div style="border:3px solid #B1ABBE">Div</div>
This div border color is #B1ABBE.
.myOpacity80 { color: #B1ABBE; opacity: 0.8; }
<p style="color:#B1ABBE;opacity:0.8;">80%</p>
Text with #B1ABBE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B1ABBE;}
<p style="text-shadow: 3px 3px 1px #B1ABBE">Text here.</p>
This text has shadow with #B1ABBE color.
.textShadow {text-shadow: 3px 3px 1px #B1ABBE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B1ABBE, 5px 5px 20px red">Text here.</p>
This text has shadow with #B1ABBE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B1ABBE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B1ABBE, Direction=45, Strength=4)">Text</p>
This text has shadow with #B1ABBE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B1ABBE; -webkit-box-shadow: 1px 1px 3px 2px #B1ABBE; box-shadow: 1px 1px 3px 2px #B1ABBE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B1ABBE; -webkit-box-shadow: 1px 1px 3px 2px #B1ABBE; box-shadow:1px 1px 3px 2px #B1ABBE;">
Div content here</div>
This text has color #B1ABBE on black background.
This text has color #B1ABBE on white background.
This text has black color on #B1ABBE background.
This text has white color on #B1ABBE background.