HEX: #A5AEFF
RGB: (165,174,255)
#A5AEFF contains mainly blue color. Web safe color of #A5AEFF is #9999FF (or #99F).
#A5AEFF color RGB value is (165,174,255).
RGB: (165,174,255) (65%,68%,100%)
R 165 of 255 = 65%
G 174 of 255 = 68%
B 255 of 255 = 100%
R + G + B ~ 78%. #A5AEFF is quite light color.
R + G + B =
165 + 174 + 255 = 594 (100%)
R 165 of 594 ~ 27.78%
G 174 of 594 ~ 29.29%
B 255 of 594 ~ 42.93%
#A5AEFF color CMYK value is (35,32,0,0).
CMYK: (35,32,0,0) C35M32Y0K0 (35%,32%,0%,0%) (0.35/0.32/0.00/0.00)
A5 | AE | FF | |
---|---|---|---|
RGB | 165 | 174 | 255 |
HSL | 234° | 100.00% | 82.35% |
HSB/HSV | 234° | 35.29% | 100.00% |
CMYK | 35.29% | 31.76% | 0.00% |
0.00% |
HEX | A5 | AE | FF |
Decimal | 165 | 174 | 255 |
Binary | 10100101 | 10101110 | 11111111 |
Octal | 245 | 256 | 377 |
Examples of css and html codes for elements with #A5AEFF color. Also use rgb(165,174,255) instead hex code.
.myTextColor { color: #A5AEFF; }
<p style="color:#A5AEFF">This sample text font color is #A5AEFF.</p>
This text font color is #A5AEFF.
.myBgColor { background-color: #A5AEFF; }
<div style="background-color:#A5AEFF">Inner text</div>
This div background color is #A5AEFF.
.myBorderColor { border: 1px solid #A5AEFF; }
<div style="border:3px solid #A5AEFF">Div</div>
This div border color is #A5AEFF.
.myOpacity80 { color: #A5AEFF; opacity: 0.8; }
<p style="color:#A5AEFF;opacity:0.8;">80%</p>
Text with #A5AEFF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5AEFF;}
<p style="text-shadow: 3px 3px 1px #A5AEFF">Text here.</p>
This text has shadow with #A5AEFF color.
.textShadow {text-shadow: 3px 3px 1px #A5AEFF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5AEFF, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5AEFF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5AEFF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5AEFF, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5AEFF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5AEFF; -webkit-box-shadow: 1px 1px 3px 2px #A5AEFF; box-shadow: 1px 1px 3px 2px #A5AEFF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5AEFF; -webkit-box-shadow: 1px 1px 3px 2px #A5AEFF; box-shadow:1px 1px 3px 2px #A5AEFF;">
Div content here</div>
This text has color #A5AEFF on black background.
This text has color #A5AEFF on white background.
This text has black color on #A5AEFF background.
This text has white color on #A5AEFF background.