HEX: #A4AEDA
RGB: (164,174,218)
#A4AEDA contains red, green and blue colors in about the same proportion. Web safe color of #A4AEDA is #9999CC (or #99C).
#A4AEDA color RGB value is (164,174,218).
RGB: (164,174,218) (64%,68%,85%)
R 164 of 255 = 64%
G 174 of 255 = 68%
B 218 of 255 = 85%
R + G + B ~ 72%. #A4AEDA is quite light color.
R + G + B =
164 + 174 + 218 = 556 (100%)
R 164 of 556 ~ 29.5%
G 174 of 556 ~ 31.29%
B 218 of 556 ~ 39.21%
#A4AEDA color CMYK value is (25,20,0,15).
CMYK: (25,20,0,15) C25M20Y0K15 (25%,20%,0%,15%) (0.25/0.20/0.00/0.15)
A4 | AE | DA | |
---|---|---|---|
RGB | 164 | 174 | 218 |
HSL | 229° | 42.19% | 74.90% |
HSB/HSV | 229° | 24.77% | 85.49% |
CMYK | 24.77% | 20.18% | 0.00% |
14.51% |
HEX | A4 | AE | DA |
Decimal | 164 | 174 | 218 |
Binary | 10100100 | 10101110 | 11011010 |
Octal | 244 | 256 | 332 |
Examples of css and html codes for elements with #A4AEDA color. Also use rgb(164,174,218) instead hex code.
.myTextColor { color: #A4AEDA; }
<p style="color:#A4AEDA">This sample text font color is #A4AEDA.</p>
This text font color is #A4AEDA.
.myBgColor { background-color: #A4AEDA; }
<div style="background-color:#A4AEDA">Inner text</div>
This div background color is #A4AEDA.
.myBorderColor { border: 1px solid #A4AEDA; }
<div style="border:3px solid #A4AEDA">Div</div>
This div border color is #A4AEDA.
.myOpacity80 { color: #A4AEDA; opacity: 0.8; }
<p style="color:#A4AEDA;opacity:0.8;">80%</p>
Text with #A4AEDA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A4AEDA;}
<p style="text-shadow: 3px 3px 1px #A4AEDA">Text here.</p>
This text has shadow with #A4AEDA color.
.textShadow {text-shadow: 3px 3px 1px #A4AEDA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A4AEDA, 5px 5px 20px red">Text here.</p>
This text has shadow with #A4AEDA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A4AEDA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A4AEDA, Direction=45, Strength=4)">Text</p>
This text has shadow with #A4AEDA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A4AEDA; -webkit-box-shadow: 1px 1px 3px 2px #A4AEDA; box-shadow: 1px 1px 3px 2px #A4AEDA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A4AEDA; -webkit-box-shadow: 1px 1px 3px 2px #A4AEDA; box-shadow:1px 1px 3px 2px #A4AEDA;">
Div content here</div>
This text has color #A4AEDA on black background.
This text has color #A4AEDA on white background.
This text has black color on #A4AEDA background.
This text has white color on #A4AEDA background.