HEX: #ABB2CB
RGB: (171,178,203)
#ABB2CB contains red, green and blue colors in about the same proportion. Web safe color of #ABB2CB is #9999CC (or #99C).
#ABB2CB color RGB value is (171,178,203).
RGB: (171,178,203) (67%,70%,80%)
R 171 of 255 = 67%
G 178 of 255 = 70%
B 203 of 255 = 80%
R + G + B ~ 72%. #ABB2CB is quite light color.
R + G + B =
171 + 178 + 203 = 552 (100%)
R 171 of 552 ~ 30.98%
G 178 of 552 ~ 32.25%
B 203 of 552 ~ 36.78%
#ABB2CB color CMYK value is (16,12,0,20).
CMYK: (16,12,0,20) C16M12Y0K20 (16%,12%,0%,20%) (0.16/0.12/0.00/0.20)
AB | B2 | CB | |
---|---|---|---|
RGB | 171 | 178 | 203 |
HSL | 227° | 23.53% | 73.33% |
HSB/HSV | 227° | 15.76% | 79.61% |
CMYK | 15.76% | 12.32% | 0.00% |
20.39% |
HEX | AB | B2 | CB |
Decimal | 171 | 178 | 203 |
Binary | 10101011 | 10110010 | 11001011 |
Octal | 253 | 262 | 313 |
Examples of css and html codes for elements with #ABB2CB color. Also use rgb(171,178,203) instead hex code.
.myTextColor { color: #ABB2CB; }
<p style="color:#ABB2CB">This sample text font color is #ABB2CB.</p>
This text font color is #ABB2CB.
.myBgColor { background-color: #ABB2CB; }
<div style="background-color:#ABB2CB">Inner text</div>
This div background color is #ABB2CB.
.myBorderColor { border: 1px solid #ABB2CB; }
<div style="border:3px solid #ABB2CB">Div</div>
This div border color is #ABB2CB.
.myOpacity80 { color: #ABB2CB; opacity: 0.8; }
<p style="color:#ABB2CB;opacity:0.8;">80%</p>
Text with #ABB2CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABB2CB;}
<p style="text-shadow: 3px 3px 1px #ABB2CB">Text here.</p>
This text has shadow with #ABB2CB color.
.textShadow {text-shadow: 3px 3px 1px #ABB2CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABB2CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABB2CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABB2CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABB2CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABB2CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABB2CB; -webkit-box-shadow: 1px 1px 3px 2px #ABB2CB; box-shadow: 1px 1px 3px 2px #ABB2CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABB2CB; -webkit-box-shadow: 1px 1px 3px 2px #ABB2CB; box-shadow:1px 1px 3px 2px #ABB2CB;">
Div content here</div>
This text has color #ABB2CB on black background.
This text has color #ABB2CB on white background.
This text has black color on #ABB2CB background.
This text has white color on #ABB2CB background.