HEX: #ABAAEC
RGB: (171,170,236)
#ABAAEC contains mainly blue color. Web safe color of #ABAAEC is #9999FF (or #99F).
#ABAAEC color RGB value is (171,170,236).
RGB: (171,170,236) (67%,67%,93%)
R 171 of 255 = 67%
G 170 of 255 = 67%
B 236 of 255 = 93%
R + G + B ~ 76%. #ABAAEC is quite light color.
R + G + B =
171 + 170 + 236 = 577 (100%)
R 171 of 577 ~ 29.64%
G 170 of 577 ~ 29.46%
B 236 of 577 ~ 40.9%
#ABAAEC color CMYK value is (28,28,0,7).
CMYK: (28,28,0,7) C28M28Y0K7 (28%,28%,0%,7%) (0.28/0.28/0.00/0.07)
AB | AA | EC | |
---|---|---|---|
RGB | 171 | 170 | 236 |
HSL | 241° | 63.46% | 79.61% |
HSB/HSV | 241° | 27.97% | 92.55% |
CMYK | 27.54% | 27.97% | 0.00% |
7.45% |
HEX | AB | AA | EC |
Decimal | 171 | 170 | 236 |
Binary | 10101011 | 10101010 | 11101100 |
Octal | 253 | 252 | 354 |
Examples of css and html codes for elements with #ABAAEC color. Also use rgb(171,170,236) instead hex code.
.myTextColor { color: #ABAAEC; }
<p style="color:#ABAAEC">This sample text font color is #ABAAEC.</p>
This text font color is #ABAAEC.
.myBgColor { background-color: #ABAAEC; }
<div style="background-color:#ABAAEC">Inner text</div>
This div background color is #ABAAEC.
.myBorderColor { border: 1px solid #ABAAEC; }
<div style="border:3px solid #ABAAEC">Div</div>
This div border color is #ABAAEC.
.myOpacity80 { color: #ABAAEC; opacity: 0.8; }
<p style="color:#ABAAEC;opacity:0.8;">80%</p>
Text with #ABAAEC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABAAEC;}
<p style="text-shadow: 3px 3px 1px #ABAAEC">Text here.</p>
This text has shadow with #ABAAEC color.
.textShadow {text-shadow: 3px 3px 1px #ABAAEC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABAAEC, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABAAEC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABAAEC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABAAEC, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABAAEC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABAAEC; -webkit-box-shadow: 1px 1px 3px 2px #ABAAEC; box-shadow: 1px 1px 3px 2px #ABAAEC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABAAEC; -webkit-box-shadow: 1px 1px 3px 2px #ABAAEC; box-shadow:1px 1px 3px 2px #ABAAEC;">
Div content here</div>
This text has color #ABAAEC on black background.
This text has color #ABAAEC on white background.
This text has black color on #ABAAEC background.
This text has white color on #ABAAEC background.