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