HEX: #ADAACD
RGB: (173,170,205)
#ADAACD contains red, green and blue colors in about the same proportion. Web safe color of #ADAACD is #9999CC (or #99C).
#ADAACD color RGB value is (173,170,205).
RGB: (173,170,205) (68%,67%,80%)
R 173 of 255 = 68%
G 170 of 255 = 67%
B 205 of 255 = 80%
R + G + B ~ 72%. #ADAACD is quite light color.
R + G + B =
173 + 170 + 205 = 548 (100%)
R 173 of 548 ~ 31.57%
G 170 of 548 ~ 31.02%
B 205 of 548 ~ 37.41%
#ADAACD color CMYK value is (16,17,0,20).
CMYK: (16,17,0,20) C16M17Y0K20 (16%,17%,0%,20%) (0.16/0.17/0.00/0.20)
AD | AA | CD | |
---|---|---|---|
RGB | 173 | 170 | 205 |
HSL | 245° | 25.93% | 73.53% |
HSB/HSV | 245° | 17.07% | 80.39% |
CMYK | 15.61% | 17.07% | 0.00% |
19.61% |
HEX | AD | AA | CD |
Decimal | 173 | 170 | 205 |
Binary | 10101101 | 10101010 | 11001101 |
Octal | 255 | 252 | 315 |
Examples of css and html codes for elements with #ADAACD color. Also use rgb(173,170,205) instead hex code.
.myTextColor { color: #ADAACD; }
<p style="color:#ADAACD">This sample text font color is #ADAACD.</p>
This text font color is #ADAACD.
.myBgColor { background-color: #ADAACD; }
<div style="background-color:#ADAACD">Inner text</div>
This div background color is #ADAACD.
.myBorderColor { border: 1px solid #ADAACD; }
<div style="border:3px solid #ADAACD">Div</div>
This div border color is #ADAACD.
.myOpacity80 { color: #ADAACD; opacity: 0.8; }
<p style="color:#ADAACD;opacity:0.8;">80%</p>
Text with #ADAACD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADAACD;}
<p style="text-shadow: 3px 3px 1px #ADAACD">Text here.</p>
This text has shadow with #ADAACD color.
.textShadow {text-shadow: 3px 3px 1px #ADAACD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADAACD, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADAACD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADAACD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADAACD, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADAACD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADAACD; -webkit-box-shadow: 1px 1px 3px 2px #ADAACD; box-shadow: 1px 1px 3px 2px #ADAACD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADAACD; -webkit-box-shadow: 1px 1px 3px 2px #ADAACD; box-shadow:1px 1px 3px 2px #ADAACD;">
Div content here</div>
This text has color #ADAACD on black background.
This text has color #ADAACD on white background.
This text has black color on #ADAACD background.
This text has white color on #ADAACD background.