HEX: #ADD1CB
RGB: (173,209,203)
#ADD1CB contains red, green and blue colors in about the same proportion. Web safe color of #ADD1CB is #99CCCC (or #9CC).
#ADD1CB color RGB value is (173,209,203).
RGB: (173,209,203) (68%,82%,80%)
R 173 of 255 = 68%
G 209 of 255 = 82%
B 203 of 255 = 80%
R + G + B ~ 77%. #ADD1CB is quite light color.
R + G + B =
173 + 209 + 203 = 585 (100%)
R 173 of 585 ~ 29.57%
G 209 of 585 ~ 35.73%
B 203 of 585 ~ 34.7%
#ADD1CB color CMYK value is (17,0,3,18).
CMYK: (17,0,3,18) C17M0Y3K18 (17%,0%,3%,18%) (0.17/0.00/0.03/0.18)
AD | D1 | CB | |
---|---|---|---|
RGB | 173 | 209 | 203 |
HSL | 170° | 28.13% | 74.90% |
HSB/HSV | 170° | 17.22% | 81.96% |
CMYK | 17.22% | 0.00% | 2.87% |
18.04% |
HEX | AD | D1 | CB |
Decimal | 173 | 209 | 203 |
Binary | 10101101 | 11010001 | 11001011 |
Octal | 255 | 321 | 313 |
Examples of css and html codes for elements with #ADD1CB color. Also use rgb(173,209,203) instead hex code.
.myTextColor { color: #ADD1CB; }
<p style="color:#ADD1CB">This sample text font color is #ADD1CB.</p>
This text font color is #ADD1CB.
.myBgColor { background-color: #ADD1CB; }
<div style="background-color:#ADD1CB">Inner text</div>
This div background color is #ADD1CB.
.myBorderColor { border: 1px solid #ADD1CB; }
<div style="border:3px solid #ADD1CB">Div</div>
This div border color is #ADD1CB.
.myOpacity80 { color: #ADD1CB; opacity: 0.8; }
<p style="color:#ADD1CB;opacity:0.8;">80%</p>
Text with #ADD1CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADD1CB;}
<p style="text-shadow: 3px 3px 1px #ADD1CB">Text here.</p>
This text has shadow with #ADD1CB color.
.textShadow {text-shadow: 3px 3px 1px #ADD1CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADD1CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADD1CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADD1CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADD1CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADD1CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADD1CB; -webkit-box-shadow: 1px 1px 3px 2px #ADD1CB; box-shadow: 1px 1px 3px 2px #ADD1CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADD1CB; -webkit-box-shadow: 1px 1px 3px 2px #ADD1CB; box-shadow:1px 1px 3px 2px #ADD1CB;">
Div content here</div>
This text has color #ADD1CB on black background.
This text has color #ADD1CB on white background.
This text has black color on #ADD1CB background.
This text has white color on #ADD1CB background.