HEX: #AEEAFB
RGB: (174,234,251)
#AEEAFB contains mainly green and blue colors. Web safe color of #AEEAFB is #99FFFF (or #9FF).
#AEEAFB color RGB value is (174,234,251).
RGB: (174,234,251) (68%,92%,98%)
R 174 of 255 = 68%
G 234 of 255 = 92%
B 251 of 255 = 98%
R + G + B ~ 86%. #AEEAFB is light color.
R + G + B =
174 + 234 + 251 = 659 (100%)
R 174 of 659 ~ 26.4%
G 234 of 659 ~ 35.51%
B 251 of 659 ~ 38.09%
#AEEAFB color CMYK value is (31,7,0,2).
CMYK: (31,7,0,2) C31M7Y0K2 (31%,7%,0%,2%) (0.31/0.07/0.00/0.02)
AE | EA | FB | |
---|---|---|---|
RGB | 174 | 234 | 251 |
HSL | 193° | 90.59% | 83.33% |
HSB/HSV | 193° | 30.68% | 98.43% |
CMYK | 30.68% | 6.77% | 0.00% |
1.57% |
HEX | AE | EA | FB |
Decimal | 174 | 234 | 251 |
Binary | 10101110 | 11101010 | 11111011 |
Octal | 256 | 352 | 373 |
Examples of css and html codes for elements with #AEEAFB color. Also use rgb(174,234,251) instead hex code.
.myTextColor { color: #AEEAFB; }
<p style="color:#AEEAFB">This sample text font color is #AEEAFB.</p>
This text font color is #AEEAFB.
.myBgColor { background-color: #AEEAFB; }
<div style="background-color:#AEEAFB">Inner text</div>
This div background color is #AEEAFB.
.myBorderColor { border: 1px solid #AEEAFB; }
<div style="border:3px solid #AEEAFB">Div</div>
This div border color is #AEEAFB.
.myOpacity80 { color: #AEEAFB; opacity: 0.8; }
<p style="color:#AEEAFB;opacity:0.8;">80%</p>
Text with #AEEAFB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEEAFB;}
<p style="text-shadow: 3px 3px 1px #AEEAFB">Text here.</p>
This text has shadow with #AEEAFB color.
.textShadow {text-shadow: 3px 3px 1px #AEEAFB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEEAFB, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEEAFB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEEAFB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEEAFB, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEEAFB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEEAFB; -webkit-box-shadow: 1px 1px 3px 2px #AEEAFB; box-shadow: 1px 1px 3px 2px #AEEAFB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEEAFB; -webkit-box-shadow: 1px 1px 3px 2px #AEEAFB; box-shadow:1px 1px 3px 2px #AEEAFB;">
Div content here</div>
This text has color #AEEAFB on black background.
This text has color #AEEAFB on white background.
This text has black color on #AEEAFB background.
This text has white color on #AEEAFB background.