HEX: #ADA8DD
RGB: (173,168,221)
#ADA8DD contains red, green and blue colors in about the same proportion. Web safe color of #ADA8DD is #9999CC (or #99C).
#ADA8DD color RGB value is (173,168,221).
RGB: (173,168,221) (68%,66%,87%)
R 173 of 255 = 68%
G 168 of 255 = 66%
B 221 of 255 = 87%
R + G + B ~ 74%. #ADA8DD is quite light color.
R + G + B =
173 + 168 + 221 = 562 (100%)
R 173 of 562 ~ 30.78%
G 168 of 562 ~ 29.89%
B 221 of 562 ~ 39.32%
#ADA8DD color CMYK value is (22,24,0,13).
CMYK: (22,24,0,13) C22M24Y0K13 (22%,24%,0%,13%) (0.22/0.24/0.00/0.13)
AD | A8 | DD | |
---|---|---|---|
RGB | 173 | 168 | 221 |
HSL | 246° | 43.80% | 76.27% |
HSB/HSV | 246° | 23.98% | 86.67% |
CMYK | 21.72% | 23.98% | 0.00% |
13.33% |
HEX | AD | A8 | DD |
Decimal | 173 | 168 | 221 |
Binary | 10101101 | 10101000 | 11011101 |
Octal | 255 | 250 | 335 |
Examples of css and html codes for elements with #ADA8DD color. Also use rgb(173,168,221) instead hex code.
.myTextColor { color: #ADA8DD; }
<p style="color:#ADA8DD">This sample text font color is #ADA8DD.</p>
This text font color is #ADA8DD.
.myBgColor { background-color: #ADA8DD; }
<div style="background-color:#ADA8DD">Inner text</div>
This div background color is #ADA8DD.
.myBorderColor { border: 1px solid #ADA8DD; }
<div style="border:3px solid #ADA8DD">Div</div>
This div border color is #ADA8DD.
.myOpacity80 { color: #ADA8DD; opacity: 0.8; }
<p style="color:#ADA8DD;opacity:0.8;">80%</p>
Text with #ADA8DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADA8DD;}
<p style="text-shadow: 3px 3px 1px #ADA8DD">Text here.</p>
This text has shadow with #ADA8DD color.
.textShadow {text-shadow: 3px 3px 1px #ADA8DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADA8DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADA8DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADA8DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADA8DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADA8DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADA8DD; -webkit-box-shadow: 1px 1px 3px 2px #ADA8DD; box-shadow: 1px 1px 3px 2px #ADA8DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADA8DD; -webkit-box-shadow: 1px 1px 3px 2px #ADA8DD; box-shadow:1px 1px 3px 2px #ADA8DD;">
Div content here</div>
This text has color #ADA8DD on black background.
This text has color #ADA8DD on white background.
This text has black color on #ADA8DD background.
This text has white color on #ADA8DD background.