HEX: #AD90CB
RGB: (173,144,203)
#AD90CB contains red, green and blue colors in about the same proportion. Web safe color of #AD90CB is #9999CC (or #99C).
#AD90CB color RGB value is (173,144,203).
RGB: (173,144,203) (68%,56%,80%)
R 173 of 255 = 68%
G 144 of 255 = 56%
B 203 of 255 = 80%
R + G + B ~ 68%. #AD90CB is quite light color.
R + G + B =
173 + 144 + 203 = 520 (100%)
R 173 of 520 ~ 33.27%
G 144 of 520 ~ 27.69%
B 203 of 520 ~ 39.04%
#AD90CB color CMYK value is (15,29,0,20).
CMYK: (15,29,0,20) C15M29Y0K20 (15%,29%,0%,20%) (0.15/0.29/0.00/0.20)
AD | 90 | CB | |
---|---|---|---|
RGB | 173 | 144 | 203 |
HSL | 269° | 36.20% | 68.04% |
HSB/HSV | 269° | 29.06% | 79.61% |
CMYK | 14.78% | 29.06% | 0.00% |
20.39% |
HEX | AD | 90 | CB |
Decimal | 173 | 144 | 203 |
Binary | 10101101 | 10010000 | 11001011 |
Octal | 255 | 220 | 313 |
Examples of css and html codes for elements with #AD90CB color. Also use rgb(173,144,203) instead hex code.
.myTextColor { color: #AD90CB; }
<p style="color:#AD90CB">This sample text font color is #AD90CB.</p>
This text font color is #AD90CB.
.myBgColor { background-color: #AD90CB; }
<div style="background-color:#AD90CB">Inner text</div>
This div background color is #AD90CB.
.myBorderColor { border: 1px solid #AD90CB; }
<div style="border:3px solid #AD90CB">Div</div>
This div border color is #AD90CB.
.myOpacity80 { color: #AD90CB; opacity: 0.8; }
<p style="color:#AD90CB;opacity:0.8;">80%</p>
Text with #AD90CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD90CB;}
<p style="text-shadow: 3px 3px 1px #AD90CB">Text here.</p>
This text has shadow with #AD90CB color.
.textShadow {text-shadow: 3px 3px 1px #AD90CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD90CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD90CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD90CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD90CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD90CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD90CB; -webkit-box-shadow: 1px 1px 3px 2px #AD90CB; box-shadow: 1px 1px 3px 2px #AD90CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD90CB; -webkit-box-shadow: 1px 1px 3px 2px #AD90CB; box-shadow:1px 1px 3px 2px #AD90CB;">
Div content here</div>
This text has color #AD90CB on black background.
This text has color #AD90CB on white background.
This text has black color on #AD90CB background.
This text has white color on #AD90CB background.