HEX: #AEB8CC
RGB: (174,184,204)
#AEB8CC contains red, green and blue colors in about the same proportion. Web safe color of #AEB8CC is #99CCCC (or #9CC).
#AEB8CC color RGB value is (174,184,204).
RGB: (174,184,204) (68%,72%,80%)
R 174 of 255 = 68%
G 184 of 255 = 72%
B 204 of 255 = 80%
R + G + B ~ 73%. #AEB8CC is quite light color.
R + G + B =
174 + 184 + 204 = 562 (100%)
R 174 of 562 ~ 30.96%
G 184 of 562 ~ 32.74%
B 204 of 562 ~ 36.3%
#AEB8CC color CMYK value is (15,10,0,20).
CMYK: (15,10,0,20) C15M10Y0K20 (15%,10%,0%,20%) (0.15/0.10/0.00/0.20)
AE | B8 | CC | |
---|---|---|---|
RGB | 174 | 184 | 204 |
HSL | 220° | 22.73% | 74.12% |
HSB/HSV | 220° | 14.71% | 80.00% |
CMYK | 14.71% | 9.80% | 0.00% |
20.00% |
HEX | AE | B8 | CC |
Decimal | 174 | 184 | 204 |
Binary | 10101110 | 10111000 | 11001100 |
Octal | 256 | 270 | 314 |
Examples of css and html codes for elements with #AEB8CC color. Also use rgb(174,184,204) instead hex code.
.myTextColor { color: #AEB8CC; }
<p style="color:#AEB8CC">This sample text font color is #AEB8CC.</p>
This text font color is #AEB8CC.
.myBgColor { background-color: #AEB8CC; }
<div style="background-color:#AEB8CC">Inner text</div>
This div background color is #AEB8CC.
.myBorderColor { border: 1px solid #AEB8CC; }
<div style="border:3px solid #AEB8CC">Div</div>
This div border color is #AEB8CC.
.myOpacity80 { color: #AEB8CC; opacity: 0.8; }
<p style="color:#AEB8CC;opacity:0.8;">80%</p>
Text with #AEB8CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEB8CC;}
<p style="text-shadow: 3px 3px 1px #AEB8CC">Text here.</p>
This text has shadow with #AEB8CC color.
.textShadow {text-shadow: 3px 3px 1px #AEB8CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEB8CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEB8CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEB8CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEB8CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEB8CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEB8CC; -webkit-box-shadow: 1px 1px 3px 2px #AEB8CC; box-shadow: 1px 1px 3px 2px #AEB8CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEB8CC; -webkit-box-shadow: 1px 1px 3px 2px #AEB8CC; box-shadow:1px 1px 3px 2px #AEB8CC;">
Div content here</div>
This text has color #AEB8CC on black background.
This text has color #AEB8CC on white background.
This text has black color on #AEB8CC background.
This text has white color on #AEB8CC background.