HEX: #ADAAE6
RGB: (173,170,230)
#ADAAE6 contains mainly red and blue colors. Web safe color of #ADAAE6 is #9999CC (or #99C).
#ADAAE6 color RGB value is (173,170,230).
RGB: (173,170,230) (68%,67%,90%)
R 173 of 255 = 68%
G 170 of 255 = 67%
B 230 of 255 = 90%
R + G + B ~ 75%. #ADAAE6 is quite light color.
R + G + B =
173 + 170 + 230 = 573 (100%)
R 173 of 573 ~ 30.19%
G 170 of 573 ~ 29.67%
B 230 of 573 ~ 40.14%
#ADAAE6 color CMYK value is (25,26,0,10).
CMYK: (25,26,0,10) C25M26Y0K10 (25%,26%,0%,10%) (0.25/0.26/0.00/0.10)
AD | AA | E6 | |
---|---|---|---|
RGB | 173 | 170 | 230 |
HSL | 243° | 54.55% | 78.43% |
HSB/HSV | 243° | 26.09% | 90.20% |
CMYK | 24.78% | 26.09% | 0.00% |
9.80% |
HEX | AD | AA | E6 |
Decimal | 173 | 170 | 230 |
Binary | 10101101 | 10101010 | 11100110 |
Octal | 255 | 252 | 346 |
Examples of css and html codes for elements with #ADAAE6 color. Also use rgb(173,170,230) instead hex code.
.myTextColor { color: #ADAAE6; }
<p style="color:#ADAAE6">This sample text font color is #ADAAE6.</p>
This text font color is #ADAAE6.
.myBgColor { background-color: #ADAAE6; }
<div style="background-color:#ADAAE6">Inner text</div>
This div background color is #ADAAE6.
.myBorderColor { border: 1px solid #ADAAE6; }
<div style="border:3px solid #ADAAE6">Div</div>
This div border color is #ADAAE6.
.myOpacity80 { color: #ADAAE6; opacity: 0.8; }
<p style="color:#ADAAE6;opacity:0.8;">80%</p>
Text with #ADAAE6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADAAE6;}
<p style="text-shadow: 3px 3px 1px #ADAAE6">Text here.</p>
This text has shadow with #ADAAE6 color.
.textShadow {text-shadow: 3px 3px 1px #ADAAE6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADAAE6, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADAAE6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADAAE6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADAAE6, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADAAE6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADAAE6; -webkit-box-shadow: 1px 1px 3px 2px #ADAAE6; box-shadow: 1px 1px 3px 2px #ADAAE6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADAAE6; -webkit-box-shadow: 1px 1px 3px 2px #ADAAE6; box-shadow:1px 1px 3px 2px #ADAAE6;">
Div content here</div>
This text has color #ADAAE6 on black background.
This text has color #ADAAE6 on white background.
This text has black color on #ADAAE6 background.
This text has white color on #ADAAE6 background.