HEX: #ADC8CD
RGB: (173,200,205)
#ADC8CD contains red, green and blue colors in about the same proportion. Web safe color of #ADC8CD is #99CCCC (or #9CC).
#ADC8CD color RGB value is (173,200,205).
RGB: (173,200,205) (68%,78%,80%)
R 173 of 255 = 68%
G 200 of 255 = 78%
B 205 of 255 = 80%
R + G + B ~ 75%. #ADC8CD is quite light color.
R + G + B =
173 + 200 + 205 = 578 (100%)
R 173 of 578 ~ 29.93%
G 200 of 578 ~ 34.6%
B 205 of 578 ~ 35.47%
#ADC8CD color CMYK value is (16,2,0,20).
CMYK: (16,2,0,20) C16M2Y0K20 (16%,2%,0%,20%) (0.16/0.02/0.00/0.20)
AD | C8 | CD | |
---|---|---|---|
RGB | 173 | 200 | 205 |
HSL | 189° | 24.24% | 74.12% |
HSB/HSV | 189° | 15.61% | 80.39% |
CMYK | 15.61% | 2.44% | 0.00% |
19.61% |
HEX | AD | C8 | CD |
Decimal | 173 | 200 | 205 |
Binary | 10101101 | 11001000 | 11001101 |
Octal | 255 | 310 | 315 |
Examples of css and html codes for elements with #ADC8CD color. Also use rgb(173,200,205) instead hex code.
.myTextColor { color: #ADC8CD; }
<p style="color:#ADC8CD">This sample text font color is #ADC8CD.</p>
This text font color is #ADC8CD.
.myBgColor { background-color: #ADC8CD; }
<div style="background-color:#ADC8CD">Inner text</div>
This div background color is #ADC8CD.
.myBorderColor { border: 1px solid #ADC8CD; }
<div style="border:3px solid #ADC8CD">Div</div>
This div border color is #ADC8CD.
.myOpacity80 { color: #ADC8CD; opacity: 0.8; }
<p style="color:#ADC8CD;opacity:0.8;">80%</p>
Text with #ADC8CD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADC8CD;}
<p style="text-shadow: 3px 3px 1px #ADC8CD">Text here.</p>
This text has shadow with #ADC8CD color.
.textShadow {text-shadow: 3px 3px 1px #ADC8CD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADC8CD, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADC8CD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADC8CD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADC8CD, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADC8CD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADC8CD; -webkit-box-shadow: 1px 1px 3px 2px #ADC8CD; box-shadow: 1px 1px 3px 2px #ADC8CD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADC8CD; -webkit-box-shadow: 1px 1px 3px 2px #ADC8CD; box-shadow:1px 1px 3px 2px #ADC8CD;">
Div content here</div>
This text has color #ADC8CD on black background.
This text has color #ADC8CD on white background.
This text has black color on #ADC8CD background.
This text has white color on #ADC8CD background.