HEX: #ABEBFE
RGB: (171,235,254)
#ABEBFE contains mainly green and blue colors. Web safe color of #ABEBFE is #99FFFF (or #9FF).
#ABEBFE color RGB value is (171,235,254).
RGB: (171,235,254) (67%,92%,100%)
R 171 of 255 = 67%
G 235 of 255 = 92%
B 254 of 255 = 100%
R + G + B ~ 86%. #ABEBFE is light color.
R + G + B =
171 + 235 + 254 = 660 (100%)
R 171 of 660 ~ 25.91%
G 235 of 660 ~ 35.61%
B 254 of 660 ~ 38.48%
#ABEBFE color CMYK value is (33,7,0,0).
CMYK: (33,7,0,0) C33M7Y0K0 (33%,7%,0%,0%) (0.33/0.07/0.00/0.00)
AB | EB | FE | |
---|---|---|---|
RGB | 171 | 235 | 254 |
HSL | 194° | 97.65% | 83.33% |
HSB/HSV | 194° | 32.68% | 99.61% |
CMYK | 32.68% | 7.48% | 0.00% |
0.39% |
HEX | AB | EB | FE |
Decimal | 171 | 235 | 254 |
Binary | 10101011 | 11101011 | 11111110 |
Octal | 253 | 353 | 376 |
Examples of css and html codes for elements with #ABEBFE color. Also use rgb(171,235,254) instead hex code.
.myTextColor { color: #ABEBFE; }
<p style="color:#ABEBFE">This sample text font color is #ABEBFE.</p>
This text font color is #ABEBFE.
.myBgColor { background-color: #ABEBFE; }
<div style="background-color:#ABEBFE">Inner text</div>
This div background color is #ABEBFE.
.myBorderColor { border: 1px solid #ABEBFE; }
<div style="border:3px solid #ABEBFE">Div</div>
This div border color is #ABEBFE.
.myOpacity80 { color: #ABEBFE; opacity: 0.8; }
<p style="color:#ABEBFE;opacity:0.8;">80%</p>
Text with #ABEBFE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABEBFE;}
<p style="text-shadow: 3px 3px 1px #ABEBFE">Text here.</p>
This text has shadow with #ABEBFE color.
.textShadow {text-shadow: 3px 3px 1px #ABEBFE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABEBFE, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABEBFE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABEBFE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABEBFE, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABEBFE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABEBFE; -webkit-box-shadow: 1px 1px 3px 2px #ABEBFE; box-shadow: 1px 1px 3px 2px #ABEBFE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABEBFE; -webkit-box-shadow: 1px 1px 3px 2px #ABEBFE; box-shadow:1px 1px 3px 2px #ABEBFE;">
Div content here</div>
This text has color #ABEBFE on black background.
This text has color #ABEBFE on white background.
This text has black color on #ABEBFE background.
This text has white color on #ABEBFE background.