HEX: #A5AEE3
RGB: (165,174,227)
#A5AEE3 contains mainly green and blue colors. Web safe color of #A5AEE3 is #9999CC (or #99C).
#A5AEE3 color RGB value is (165,174,227).
RGB: (165,174,227) (65%,68%,89%)
R 165 of 255 = 65%
G 174 of 255 = 68%
B 227 of 255 = 89%
R + G + B ~ 74%. #A5AEE3 is quite light color.
R + G + B =
165 + 174 + 227 = 566 (100%)
R 165 of 566 ~ 29.15%
G 174 of 566 ~ 30.74%
B 227 of 566 ~ 40.11%
#A5AEE3 color CMYK value is (27,23,0,11).
CMYK: (27,23,0,11) C27M23Y0K11 (27%,23%,0%,11%) (0.27/0.23/0.00/0.11)
A5 | AE | E3 | |
---|---|---|---|
RGB | 165 | 174 | 227 |
HSL | 231° | 52.54% | 76.86% |
HSB/HSV | 231° | 27.31% | 89.02% |
CMYK | 27.31% | 23.35% | 0.00% |
10.98% |
HEX | A5 | AE | E3 |
Decimal | 165 | 174 | 227 |
Binary | 10100101 | 10101110 | 11100011 |
Octal | 245 | 256 | 343 |
Examples of css and html codes for elements with #A5AEE3 color. Also use rgb(165,174,227) instead hex code.
.myTextColor { color: #A5AEE3; }
<p style="color:#A5AEE3">This sample text font color is #A5AEE3.</p>
This text font color is #A5AEE3.
.myBgColor { background-color: #A5AEE3; }
<div style="background-color:#A5AEE3">Inner text</div>
This div background color is #A5AEE3.
.myBorderColor { border: 1px solid #A5AEE3; }
<div style="border:3px solid #A5AEE3">Div</div>
This div border color is #A5AEE3.
.myOpacity80 { color: #A5AEE3; opacity: 0.8; }
<p style="color:#A5AEE3;opacity:0.8;">80%</p>
Text with #A5AEE3 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5AEE3;}
<p style="text-shadow: 3px 3px 1px #A5AEE3">Text here.</p>
This text has shadow with #A5AEE3 color.
.textShadow {text-shadow: 3px 3px 1px #A5AEE3, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5AEE3, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5AEE3 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5AEE3, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5AEE3, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5AEE3 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5AEE3; -webkit-box-shadow: 1px 1px 3px 2px #A5AEE3; box-shadow: 1px 1px 3px 2px #A5AEE3; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5AEE3; -webkit-box-shadow: 1px 1px 3px 2px #A5AEE3; box-shadow:1px 1px 3px 2px #A5AEE3;">
Div content here</div>
This text has color #A5AEE3 on black background.
This text has color #A5AEE3 on white background.
This text has black color on #A5AEE3 background.
This text has white color on #A5AEE3 background.