HEX: #AD9DDE
RGB: (173,157,222)
#AD9DDE contains mainly red and blue colors. Web safe color of #AD9DDE is #9999CC (or #99C).
#AD9DDE color RGB value is (173,157,222).
RGB: (173,157,222) (68%,62%,87%)
R 173 of 255 = 68%
G 157 of 255 = 62%
B 222 of 255 = 87%
R + G + B ~ 72%. #AD9DDE is quite light color.
R + G + B =
173 + 157 + 222 = 552 (100%)
R 173 of 552 ~ 31.34%
G 157 of 552 ~ 28.44%
B 222 of 552 ~ 40.22%
#AD9DDE color CMYK value is (22,29,0,13).
CMYK: (22,29,0,13) C22M29Y0K13 (22%,29%,0%,13%) (0.22/0.29/0.00/0.13)
AD | 9D | DE | |
---|---|---|---|
RGB | 173 | 157 | 222 |
HSL | 255° | 49.62% | 74.31% |
HSB/HSV | 255° | 29.28% | 87.06% |
CMYK | 22.07% | 29.28% | 0.00% |
12.94% |
HEX | AD | 9D | DE |
Decimal | 173 | 157 | 222 |
Binary | 10101101 | 10011101 | 11011110 |
Octal | 255 | 235 | 336 |
Examples of css and html codes for elements with #AD9DDE color. Also use rgb(173,157,222) instead hex code.
.myTextColor { color: #AD9DDE; }
<p style="color:#AD9DDE">This sample text font color is #AD9DDE.</p>
This text font color is #AD9DDE.
.myBgColor { background-color: #AD9DDE; }
<div style="background-color:#AD9DDE">Inner text</div>
This div background color is #AD9DDE.
.myBorderColor { border: 1px solid #AD9DDE; }
<div style="border:3px solid #AD9DDE">Div</div>
This div border color is #AD9DDE.
.myOpacity80 { color: #AD9DDE; opacity: 0.8; }
<p style="color:#AD9DDE;opacity:0.8;">80%</p>
Text with #AD9DDE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD9DDE;}
<p style="text-shadow: 3px 3px 1px #AD9DDE">Text here.</p>
This text has shadow with #AD9DDE color.
.textShadow {text-shadow: 3px 3px 1px #AD9DDE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD9DDE, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD9DDE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD9DDE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD9DDE, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD9DDE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD9DDE; -webkit-box-shadow: 1px 1px 3px 2px #AD9DDE; box-shadow: 1px 1px 3px 2px #AD9DDE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD9DDE; -webkit-box-shadow: 1px 1px 3px 2px #AD9DDE; box-shadow:1px 1px 3px 2px #AD9DDE;">
Div content here</div>
This text has color #AD9DDE on black background.
This text has color #AD9DDE on white background.
This text has black color on #AD9DDE background.
This text has white color on #AD9DDE background.