HEX: #AD93BD
RGB: (173,147,189)
#AD93BD contains red, green and blue colors in about the same proportion. Web safe color of #AD93BD is #9999CC (or #99C).
#AD93BD color RGB value is (173,147,189).
RGB: (173,147,189) (68%,58%,74%)
R 173 of 255 = 68%
G 147 of 255 = 58%
B 189 of 255 = 74%
R + G + B ~ 67%. #AD93BD is quite light color.
R + G + B =
173 + 147 + 189 = 509 (100%)
R 173 of 509 ~ 33.99%
G 147 of 509 ~ 28.88%
B 189 of 509 ~ 37.13%
#AD93BD color CMYK value is (8,22,0,26).
CMYK: (8,22,0,26) C8M22Y0K26 (8%,22%,0%,26%) (0.08/0.22/0.00/0.26)
AD | 93 | BD | |
---|---|---|---|
RGB | 173 | 147 | 189 |
HSL | 277° | 24.14% | 65.88% |
HSB/HSV | 277° | 22.22% | 74.12% |
CMYK | 8.47% | 22.22% | 0.00% |
25.88% |
HEX | AD | 93 | BD |
Decimal | 173 | 147 | 189 |
Binary | 10101101 | 10010011 | 10111101 |
Octal | 255 | 223 | 275 |
Examples of css and html codes for elements with #AD93BD color. Also use rgb(173,147,189) instead hex code.
.myTextColor { color: #AD93BD; }
<p style="color:#AD93BD">This sample text font color is #AD93BD.</p>
This text font color is #AD93BD.
.myBgColor { background-color: #AD93BD; }
<div style="background-color:#AD93BD">Inner text</div>
This div background color is #AD93BD.
.myBorderColor { border: 1px solid #AD93BD; }
<div style="border:3px solid #AD93BD">Div</div>
This div border color is #AD93BD.
.myOpacity80 { color: #AD93BD; opacity: 0.8; }
<p style="color:#AD93BD;opacity:0.8;">80%</p>
Text with #AD93BD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD93BD;}
<p style="text-shadow: 3px 3px 1px #AD93BD">Text here.</p>
This text has shadow with #AD93BD color.
.textShadow {text-shadow: 3px 3px 1px #AD93BD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD93BD, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD93BD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD93BD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD93BD, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD93BD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD93BD; -webkit-box-shadow: 1px 1px 3px 2px #AD93BD; box-shadow: 1px 1px 3px 2px #AD93BD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD93BD; -webkit-box-shadow: 1px 1px 3px 2px #AD93BD; box-shadow:1px 1px 3px 2px #AD93BD;">
Div content here</div>
This text has color #AD93BD on black background.
This text has color #AD93BD on white background.
This text has black color on #AD93BD background.
This text has white color on #AD93BD background.