HEX: #ABEEC9
RGB: (171,238,201)
#ABEEC9 contains mainly green and blue colors. Web safe color of #ABEEC9 is #99FFCC (or #9FC).
#ABEEC9 color RGB value is (171,238,201).
RGB: (171,238,201) (67%,93%,79%)
R 171 of 255 = 67%
G 238 of 255 = 93%
B 201 of 255 = 79%
R + G + B ~ 80%. #ABEEC9 is quite light color.
R + G + B =
171 + 238 + 201 = 610 (100%)
R 171 of 610 ~ 28.03%
G 238 of 610 ~ 39.02%
B 201 of 610 ~ 32.95%
#ABEEC9 color CMYK value is (28,0,16,7).
CMYK: (28,0,16,7) C28M0Y16K7 (28%,0%,16%,7%) (0.28/0.00/0.16/0.07)
AB | EE | C9 | |
---|---|---|---|
RGB | 171 | 238 | 201 |
HSL | 147° | 66.34% | 80.20% |
HSB/HSV | 147° | 28.15% | 93.33% |
CMYK | 28.15% | 0.00% | 15.55% |
6.67% |
HEX | AB | EE | C9 |
Decimal | 171 | 238 | 201 |
Binary | 10101011 | 11101110 | 11001001 |
Octal | 253 | 356 | 311 |
Examples of css and html codes for elements with #ABEEC9 color. Also use rgb(171,238,201) instead hex code.
.myTextColor { color: #ABEEC9; }
<p style="color:#ABEEC9">This sample text font color is #ABEEC9.</p>
This text font color is #ABEEC9.
.myBgColor { background-color: #ABEEC9; }
<div style="background-color:#ABEEC9">Inner text</div>
This div background color is #ABEEC9.
.myBorderColor { border: 1px solid #ABEEC9; }
<div style="border:3px solid #ABEEC9">Div</div>
This div border color is #ABEEC9.
.myOpacity80 { color: #ABEEC9; opacity: 0.8; }
<p style="color:#ABEEC9;opacity:0.8;">80%</p>
Text with #ABEEC9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABEEC9;}
<p style="text-shadow: 3px 3px 1px #ABEEC9">Text here.</p>
This text has shadow with #ABEEC9 color.
.textShadow {text-shadow: 3px 3px 1px #ABEEC9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABEEC9, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABEEC9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABEEC9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABEEC9, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABEEC9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABEEC9; -webkit-box-shadow: 1px 1px 3px 2px #ABEEC9; box-shadow: 1px 1px 3px 2px #ABEEC9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABEEC9; -webkit-box-shadow: 1px 1px 3px 2px #ABEEC9; box-shadow:1px 1px 3px 2px #ABEEC9;">
Div content here</div>
This text has color #ABEEC9 on black background.
This text has color #ABEEC9 on white background.
This text has black color on #ABEEC9 background.
This text has white color on #ABEEC9 background.