HEX: #ABBBE6
RGB: (171,187,230)
#ABBBE6 contains red, green and blue colors in about the same proportion. Web safe color of #ABBBE6 is #99CCCC (or #9CC).
#ABBBE6 color RGB value is (171,187,230).
RGB: (171,187,230) (67%,73%,90%)
R 171 of 255 = 67%
G 187 of 255 = 73%
B 230 of 255 = 90%
R + G + B ~ 77%. #ABBBE6 is quite light color.
R + G + B =
171 + 187 + 230 = 588 (100%)
R 171 of 588 ~ 29.08%
G 187 of 588 ~ 31.8%
B 230 of 588 ~ 39.12%
#ABBBE6 color CMYK value is (26,19,0,10).
CMYK: (26,19,0,10) C26M19Y0K10 (26%,19%,0%,10%) (0.26/0.19/0.00/0.10)
AB | BB | E6 | |
---|---|---|---|
RGB | 171 | 187 | 230 |
HSL | 224° | 54.13% | 78.63% |
HSB/HSV | 224° | 25.65% | 90.20% |
CMYK | 25.65% | 18.70% | 0.00% |
9.80% |
HEX | AB | BB | E6 |
Decimal | 171 | 187 | 230 |
Binary | 10101011 | 10111011 | 11100110 |
Octal | 253 | 273 | 346 |
Examples of css and html codes for elements with #ABBBE6 color. Also use rgb(171,187,230) instead hex code.
.myTextColor { color: #ABBBE6; }
<p style="color:#ABBBE6">This sample text font color is #ABBBE6.</p>
This text font color is #ABBBE6.
.myBgColor { background-color: #ABBBE6; }
<div style="background-color:#ABBBE6">Inner text</div>
This div background color is #ABBBE6.
.myBorderColor { border: 1px solid #ABBBE6; }
<div style="border:3px solid #ABBBE6">Div</div>
This div border color is #ABBBE6.
.myOpacity80 { color: #ABBBE6; opacity: 0.8; }
<p style="color:#ABBBE6;opacity:0.8;">80%</p>
Text with #ABBBE6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABBBE6;}
<p style="text-shadow: 3px 3px 1px #ABBBE6">Text here.</p>
This text has shadow with #ABBBE6 color.
.textShadow {text-shadow: 3px 3px 1px #ABBBE6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABBBE6, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABBBE6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABBBE6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABBBE6, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABBBE6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABBBE6; -webkit-box-shadow: 1px 1px 3px 2px #ABBBE6; box-shadow: 1px 1px 3px 2px #ABBBE6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABBBE6; -webkit-box-shadow: 1px 1px 3px 2px #ABBBE6; box-shadow:1px 1px 3px 2px #ABBBE6;">
Div content here</div>
This text has color #ABBBE6 on black background.
This text has color #ABBBE6 on white background.
This text has black color on #ABBBE6 background.
This text has white color on #ABBBE6 background.