HEX: #ABAED9
RGB: (171,174,217)
#ABAED9 contains red, green and blue colors in about the same proportion. Web safe color of #ABAED9 is #9999CC (or #99C).
#ABAED9 color RGB value is (171,174,217).
RGB: (171,174,217) (67%,68%,85%)
R 171 of 255 = 67%
G 174 of 255 = 68%
B 217 of 255 = 85%
R + G + B ~ 73%. #ABAED9 is quite light color.
R + G + B =
171 + 174 + 217 = 562 (100%)
R 171 of 562 ~ 30.43%
G 174 of 562 ~ 30.96%
B 217 of 562 ~ 38.61%
#ABAED9 color CMYK value is (21,20,0,15).
CMYK: (21,20,0,15) C21M20Y0K15 (21%,20%,0%,15%) (0.21/0.20/0.00/0.15)
AB | AE | D9 | |
---|---|---|---|
RGB | 171 | 174 | 217 |
HSL | 236° | 37.70% | 76.08% |
HSB/HSV | 236° | 21.20% | 85.10% |
CMYK | 21.20% | 19.82% | 0.00% |
14.90% |
HEX | AB | AE | D9 |
Decimal | 171 | 174 | 217 |
Binary | 10101011 | 10101110 | 11011001 |
Octal | 253 | 256 | 331 |
Examples of css and html codes for elements with #ABAED9 color. Also use rgb(171,174,217) instead hex code.
.myTextColor { color: #ABAED9; }
<p style="color:#ABAED9">This sample text font color is #ABAED9.</p>
This text font color is #ABAED9.
.myBgColor { background-color: #ABAED9; }
<div style="background-color:#ABAED9">Inner text</div>
This div background color is #ABAED9.
.myBorderColor { border: 1px solid #ABAED9; }
<div style="border:3px solid #ABAED9">Div</div>
This div border color is #ABAED9.
.myOpacity80 { color: #ABAED9; opacity: 0.8; }
<p style="color:#ABAED9;opacity:0.8;">80%</p>
Text with #ABAED9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABAED9;}
<p style="text-shadow: 3px 3px 1px #ABAED9">Text here.</p>
This text has shadow with #ABAED9 color.
.textShadow {text-shadow: 3px 3px 1px #ABAED9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABAED9, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABAED9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABAED9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABAED9, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABAED9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABAED9; -webkit-box-shadow: 1px 1px 3px 2px #ABAED9; box-shadow: 1px 1px 3px 2px #ABAED9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABAED9; -webkit-box-shadow: 1px 1px 3px 2px #ABAED9; box-shadow:1px 1px 3px 2px #ABAED9;">
Div content here</div>
This text has color #ABAED9 on black background.
This text has color #ABAED9 on white background.
This text has black color on #ABAED9 background.
This text has white color on #ABAED9 background.