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