HEX: #ADC0DD
RGB: (173,192,221)
#ADC0DD contains red, green and blue colors in about the same proportion. Web safe color of #ADC0DD is #99CCCC (or #9CC).
#ADC0DD color RGB value is (173,192,221).
RGB: (173,192,221) (68%,75%,87%)
R 173 of 255 = 68%
G 192 of 255 = 75%
B 221 of 255 = 87%
R + G + B ~ 77%. #ADC0DD is quite light color.
R + G + B =
173 + 192 + 221 = 586 (100%)
R 173 of 586 ~ 29.52%
G 192 of 586 ~ 32.76%
B 221 of 586 ~ 37.71%
#ADC0DD color CMYK value is (22,13,0,13).
CMYK: (22,13,0,13) C22M13Y0K13 (22%,13%,0%,13%) (0.22/0.13/0.00/0.13)
AD | C0 | DD | |
---|---|---|---|
RGB | 173 | 192 | 221 |
HSL | 216° | 41.38% | 77.25% |
HSB/HSV | 216° | 21.72% | 86.67% |
CMYK | 21.72% | 13.12% | 0.00% |
13.33% |
HEX | AD | C0 | DD |
Decimal | 173 | 192 | 221 |
Binary | 10101101 | 11000000 | 11011101 |
Octal | 255 | 300 | 335 |
Examples of css and html codes for elements with #ADC0DD color. Also use rgb(173,192,221) instead hex code.
.myTextColor { color: #ADC0DD; }
<p style="color:#ADC0DD">This sample text font color is #ADC0DD.</p>
This text font color is #ADC0DD.
.myBgColor { background-color: #ADC0DD; }
<div style="background-color:#ADC0DD">Inner text</div>
This div background color is #ADC0DD.
.myBorderColor { border: 1px solid #ADC0DD; }
<div style="border:3px solid #ADC0DD">Div</div>
This div border color is #ADC0DD.
.myOpacity80 { color: #ADC0DD; opacity: 0.8; }
<p style="color:#ADC0DD;opacity:0.8;">80%</p>
Text with #ADC0DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADC0DD;}
<p style="text-shadow: 3px 3px 1px #ADC0DD">Text here.</p>
This text has shadow with #ADC0DD color.
.textShadow {text-shadow: 3px 3px 1px #ADC0DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADC0DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADC0DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADC0DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADC0DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADC0DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADC0DD; -webkit-box-shadow: 1px 1px 3px 2px #ADC0DD; box-shadow: 1px 1px 3px 2px #ADC0DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADC0DD; -webkit-box-shadow: 1px 1px 3px 2px #ADC0DD; box-shadow:1px 1px 3px 2px #ADC0DD;">
Div content here</div>
This text has color #ADC0DD on black background.
This text has color #ADC0DD on white background.
This text has black color on #ADC0DD background.
This text has white color on #ADC0DD background.