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