HEX: #AEBAEE
RGB: (174,186,238)
#AEBAEE contains mainly green and blue colors. Web safe color of #AEBAEE is #99CCFF (or #9CF).
#AEBAEE color RGB value is (174,186,238).
RGB: (174,186,238) (68%,73%,93%)
R 174 of 255 = 68%
G 186 of 255 = 73%
B 238 of 255 = 93%
R + G + B ~ 78%. #AEBAEE is quite light color.
R + G + B =
174 + 186 + 238 = 598 (100%)
R 174 of 598 ~ 29.1%
G 186 of 598 ~ 31.1%
B 238 of 598 ~ 39.8%
#AEBAEE color CMYK value is (27,22,0,7).
CMYK: (27,22,0,7) C27M22Y0K7 (27%,22%,0%,7%) (0.27/0.22/0.00/0.07)
AE | BA | EE | |
---|---|---|---|
RGB | 174 | 186 | 238 |
HSL | 229° | 65.31% | 80.78% |
HSB/HSV | 229° | 26.89% | 93.33% |
CMYK | 26.89% | 21.85% | 0.00% |
6.67% |
HEX | AE | BA | EE |
Decimal | 174 | 186 | 238 |
Binary | 10101110 | 10111010 | 11101110 |
Octal | 256 | 272 | 356 |
Examples of css and html codes for elements with #AEBAEE color. Also use rgb(174,186,238) instead hex code.
.myTextColor { color: #AEBAEE; }
<p style="color:#AEBAEE">This sample text font color is #AEBAEE.</p>
This text font color is #AEBAEE.
.myBgColor { background-color: #AEBAEE; }
<div style="background-color:#AEBAEE">Inner text</div>
This div background color is #AEBAEE.
.myBorderColor { border: 1px solid #AEBAEE; }
<div style="border:3px solid #AEBAEE">Div</div>
This div border color is #AEBAEE.
.myOpacity80 { color: #AEBAEE; opacity: 0.8; }
<p style="color:#AEBAEE;opacity:0.8;">80%</p>
Text with #AEBAEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEBAEE;}
<p style="text-shadow: 3px 3px 1px #AEBAEE">Text here.</p>
This text has shadow with #AEBAEE color.
.textShadow {text-shadow: 3px 3px 1px #AEBAEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEBAEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEBAEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEBAEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEBAEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEBAEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEBAEE; -webkit-box-shadow: 1px 1px 3px 2px #AEBAEE; box-shadow: 1px 1px 3px 2px #AEBAEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEBAEE; -webkit-box-shadow: 1px 1px 3px 2px #AEBAEE; box-shadow:1px 1px 3px 2px #AEBAEE;">
Div content here</div>
This text has color #AEBAEE on black background.
This text has color #AEBAEE on white background.
This text has black color on #AEBAEE background.
This text has white color on #AEBAEE background.