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