HEX: #A7AEDE
RGB: (167,174,222)
#A7AEDE contains red, green and blue colors in about the same proportion. Web safe color of #A7AEDE is #9999CC (or #99C).
#A7AEDE color RGB value is (167,174,222).
RGB: (167,174,222) (65%,68%,87%)
R 167 of 255 = 65%
G 174 of 255 = 68%
B 222 of 255 = 87%
R + G + B ~ 73%. #A7AEDE is quite light color.
R + G + B =
167 + 174 + 222 = 563 (100%)
R 167 of 563 ~ 29.66%
G 174 of 563 ~ 30.91%
B 222 of 563 ~ 39.43%
#A7AEDE color CMYK value is (25,22,0,13).
CMYK: (25,22,0,13) C25M22Y0K13 (25%,22%,0%,13%) (0.25/0.22/0.00/0.13)
A7 | AE | DE | |
---|---|---|---|
RGB | 167 | 174 | 222 |
HSL | 232° | 45.45% | 76.27% |
HSB/HSV | 232° | 24.77% | 87.06% |
CMYK | 24.77% | 21.62% | 0.00% |
12.94% |
HEX | A7 | AE | DE |
Decimal | 167 | 174 | 222 |
Binary | 10100111 | 10101110 | 11011110 |
Octal | 247 | 256 | 336 |
Examples of css and html codes for elements with #A7AEDE color. Also use rgb(167,174,222) instead hex code.
.myTextColor { color: #A7AEDE; }
<p style="color:#A7AEDE">This sample text font color is #A7AEDE.</p>
This text font color is #A7AEDE.
.myBgColor { background-color: #A7AEDE; }
<div style="background-color:#A7AEDE">Inner text</div>
This div background color is #A7AEDE.
.myBorderColor { border: 1px solid #A7AEDE; }
<div style="border:3px solid #A7AEDE">Div</div>
This div border color is #A7AEDE.
.myOpacity80 { color: #A7AEDE; opacity: 0.8; }
<p style="color:#A7AEDE;opacity:0.8;">80%</p>
Text with #A7AEDE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A7AEDE;}
<p style="text-shadow: 3px 3px 1px #A7AEDE">Text here.</p>
This text has shadow with #A7AEDE color.
.textShadow {text-shadow: 3px 3px 1px #A7AEDE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A7AEDE, 5px 5px 20px red">Text here.</p>
This text has shadow with #A7AEDE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A7AEDE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A7AEDE, Direction=45, Strength=4)">Text</p>
This text has shadow with #A7AEDE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A7AEDE; -webkit-box-shadow: 1px 1px 3px 2px #A7AEDE; box-shadow: 1px 1px 3px 2px #A7AEDE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A7AEDE; -webkit-box-shadow: 1px 1px 3px 2px #A7AEDE; box-shadow:1px 1px 3px 2px #A7AEDE;">
Div content here</div>
This text has color #A7AEDE on black background.
This text has color #A7AEDE on white background.
This text has black color on #A7AEDE background.
This text has white color on #A7AEDE background.