HEX: #ABC9EC
RGB: (171,201,236)
#ABC9EC contains mainly green and blue colors. Web safe color of #ABC9EC is #99CCFF (or #9CF).
#ABC9EC color RGB value is (171,201,236).
RGB: (171,201,236) (67%,79%,93%)
R 171 of 255 = 67%
G 201 of 255 = 79%
B 236 of 255 = 93%
R + G + B ~ 80%. #ABC9EC is quite light color.
R + G + B =
171 + 201 + 236 = 608 (100%)
R 171 of 608 ~ 28.13%
G 201 of 608 ~ 33.06%
B 236 of 608 ~ 38.82%
#ABC9EC color CMYK value is (28,15,0,7).
CMYK: (28,15,0,7) C28M15Y0K7 (28%,15%,0%,7%) (0.28/0.15/0.00/0.07)
AB | C9 | EC | |
---|---|---|---|
RGB | 171 | 201 | 236 |
HSL | 212° | 63.11% | 79.80% |
HSB/HSV | 212° | 27.54% | 92.55% |
CMYK | 27.54% | 14.83% | 0.00% |
7.45% |
HEX | AB | C9 | EC |
Decimal | 171 | 201 | 236 |
Binary | 10101011 | 11001001 | 11101100 |
Octal | 253 | 311 | 354 |
Examples of css and html codes for elements with #ABC9EC color. Also use rgb(171,201,236) instead hex code.
.myTextColor { color: #ABC9EC; }
<p style="color:#ABC9EC">This sample text font color is #ABC9EC.</p>
This text font color is #ABC9EC.
.myBgColor { background-color: #ABC9EC; }
<div style="background-color:#ABC9EC">Inner text</div>
This div background color is #ABC9EC.
.myBorderColor { border: 1px solid #ABC9EC; }
<div style="border:3px solid #ABC9EC">Div</div>
This div border color is #ABC9EC.
.myOpacity80 { color: #ABC9EC; opacity: 0.8; }
<p style="color:#ABC9EC;opacity:0.8;">80%</p>
Text with #ABC9EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABC9EC;}
<p style="text-shadow: 3px 3px 1px #ABC9EC">Text here.</p>
This text has shadow with #ABC9EC color.
.textShadow {text-shadow: 3px 3px 1px #ABC9EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABC9EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABC9EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABC9EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABC9EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABC9EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABC9EC; -webkit-box-shadow: 1px 1px 3px 2px #ABC9EC; box-shadow: 1px 1px 3px 2px #ABC9EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABC9EC; -webkit-box-shadow: 1px 1px 3px 2px #ABC9EC; box-shadow:1px 1px 3px 2px #ABC9EC;">
Div content here</div>
This text has color #ABC9EC on black background.
This text has color #ABC9EC on white background.
This text has black color on #ABC9EC background.
This text has white color on #ABC9EC background.