HEX: #AEB8DA
RGB: (174,184,218)
#AEB8DA contains red, green and blue colors in about the same proportion. Web safe color of #AEB8DA is #99CCCC (or #9CC).
#AEB8DA color RGB value is (174,184,218).
RGB: (174,184,218) (68%,72%,85%)
R 174 of 255 = 68%
G 184 of 255 = 72%
B 218 of 255 = 85%
R + G + B ~ 75%. #AEB8DA is quite light color.
R + G + B =
174 + 184 + 218 = 576 (100%)
R 174 of 576 ~ 30.21%
G 184 of 576 ~ 31.94%
B 218 of 576 ~ 37.85%
#AEB8DA color CMYK value is (20,16,0,15).
CMYK: (20,16,0,15) C20M16Y0K15 (20%,16%,0%,15%) (0.20/0.16/0.00/0.15)
AE | B8 | DA | |
---|---|---|---|
RGB | 174 | 184 | 218 |
HSL | 226° | 37.29% | 76.86% |
HSB/HSV | 226° | 20.18% | 85.49% |
CMYK | 20.18% | 15.60% | 0.00% |
14.51% |
HEX | AE | B8 | DA |
Decimal | 174 | 184 | 218 |
Binary | 10101110 | 10111000 | 11011010 |
Octal | 256 | 270 | 332 |
Examples of css and html codes for elements with #AEB8DA color. Also use rgb(174,184,218) instead hex code.
.myTextColor { color: #AEB8DA; }
<p style="color:#AEB8DA">This sample text font color is #AEB8DA.</p>
This text font color is #AEB8DA.
.myBgColor { background-color: #AEB8DA; }
<div style="background-color:#AEB8DA">Inner text</div>
This div background color is #AEB8DA.
.myBorderColor { border: 1px solid #AEB8DA; }
<div style="border:3px solid #AEB8DA">Div</div>
This div border color is #AEB8DA.
.myOpacity80 { color: #AEB8DA; opacity: 0.8; }
<p style="color:#AEB8DA;opacity:0.8;">80%</p>
Text with #AEB8DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEB8DA;}
<p style="text-shadow: 3px 3px 1px #AEB8DA">Text here.</p>
This text has shadow with #AEB8DA color.
.textShadow {text-shadow: 3px 3px 1px #AEB8DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEB8DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEB8DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEB8DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEB8DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEB8DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEB8DA; -webkit-box-shadow: 1px 1px 3px 2px #AEB8DA; box-shadow: 1px 1px 3px 2px #AEB8DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEB8DA; -webkit-box-shadow: 1px 1px 3px 2px #AEB8DA; box-shadow:1px 1px 3px 2px #AEB8DA;">
Div content here</div>
This text has color #AEB8DA on black background.
This text has color #AEB8DA on white background.
This text has black color on #AEB8DA background.
This text has white color on #AEB8DA background.