HEX: #ABEFE7
RGB: (171,239,231)
#ABEFE7 contains mainly green and blue colors. Web safe color of #ABEFE7 is #99FFFF (or #9FF).
#ABEFE7 color RGB value is (171,239,231).
RGB: (171,239,231) (67%,94%,91%)
R 171 of 255 = 67%
G 239 of 255 = 94%
B 231 of 255 = 91%
R + G + B ~ 84%. #ABEFE7 is quite light color.
R + G + B =
171 + 239 + 231 = 641 (100%)
R 171 of 641 ~ 26.68%
G 239 of 641 ~ 37.29%
B 231 of 641 ~ 36.04%
#ABEFE7 color CMYK value is (28,0,3,6).
CMYK: (28,0,3,6) C28M0Y3K6 (28%,0%,3%,6%) (0.28/0.00/0.03/0.06)
AB | EF | E7 | |
---|---|---|---|
RGB | 171 | 239 | 231 |
HSL | 173° | 68.00% | 80.39% |
HSB/HSV | 173° | 28.45% | 93.73% |
CMYK | 28.45% | 0.00% | 3.35% |
6.27% |
HEX | AB | EF | E7 |
Decimal | 171 | 239 | 231 |
Binary | 10101011 | 11101111 | 11100111 |
Octal | 253 | 357 | 347 |
Examples of css and html codes for elements with #ABEFE7 color. Also use rgb(171,239,231) instead hex code.
.myTextColor { color: #ABEFE7; }
<p style="color:#ABEFE7">This sample text font color is #ABEFE7.</p>
This text font color is #ABEFE7.
.myBgColor { background-color: #ABEFE7; }
<div style="background-color:#ABEFE7">Inner text</div>
This div background color is #ABEFE7.
.myBorderColor { border: 1px solid #ABEFE7; }
<div style="border:3px solid #ABEFE7">Div</div>
This div border color is #ABEFE7.
.myOpacity80 { color: #ABEFE7; opacity: 0.8; }
<p style="color:#ABEFE7;opacity:0.8;">80%</p>
Text with #ABEFE7 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABEFE7;}
<p style="text-shadow: 3px 3px 1px #ABEFE7">Text here.</p>
This text has shadow with #ABEFE7 color.
.textShadow {text-shadow: 3px 3px 1px #ABEFE7, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABEFE7, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABEFE7 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABEFE7, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABEFE7, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABEFE7 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABEFE7; -webkit-box-shadow: 1px 1px 3px 2px #ABEFE7; box-shadow: 1px 1px 3px 2px #ABEFE7; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABEFE7; -webkit-box-shadow: 1px 1px 3px 2px #ABEFE7; box-shadow:1px 1px 3px 2px #ABEFE7;">
Div content here</div>
This text has color #ABEFE7 on black background.
This text has color #ABEFE7 on white background.
This text has black color on #ABEFE7 background.
This text has white color on #ABEFE7 background.