HEX: #ADE6CF
RGB: (173,230,207)
#ADE6CF contains red, green and blue colors in about the same proportion. Web safe color of #ADE6CF is #99CCCC (or #9CC).
#ADE6CF color RGB value is (173,230,207).
RGB: (173,230,207) (68%,90%,81%)
R 173 of 255 = 68%
G 230 of 255 = 90%
B 207 of 255 = 81%
R + G + B ~ 80%. #ADE6CF is quite light color.
R + G + B =
173 + 230 + 207 = 610 (100%)
R 173 of 610 ~ 28.36%
G 230 of 610 ~ 37.7%
B 207 of 610 ~ 33.93%
#ADE6CF color CMYK value is (25,0,10,10).
CMYK: (25,0,10,10) C25M0Y10K10 (25%,0%,10%,10%) (0.25/0.00/0.10/0.10)
AD | E6 | CF | |
---|---|---|---|
RGB | 173 | 230 | 207 |
HSL | 156° | 53.27% | 79.02% |
HSB/HSV | 156° | 24.78% | 90.20% |
CMYK | 24.78% | 0.00% | 10.00% |
9.80% |
HEX | AD | E6 | CF |
Decimal | 173 | 230 | 207 |
Binary | 10101101 | 11100110 | 11001111 |
Octal | 255 | 346 | 317 |
Examples of css and html codes for elements with #ADE6CF color. Also use rgb(173,230,207) instead hex code.
.myTextColor { color: #ADE6CF; }
<p style="color:#ADE6CF">This sample text font color is #ADE6CF.</p>
This text font color is #ADE6CF.
.myBgColor { background-color: #ADE6CF; }
<div style="background-color:#ADE6CF">Inner text</div>
This div background color is #ADE6CF.
.myBorderColor { border: 1px solid #ADE6CF; }
<div style="border:3px solid #ADE6CF">Div</div>
This div border color is #ADE6CF.
.myOpacity80 { color: #ADE6CF; opacity: 0.8; }
<p style="color:#ADE6CF;opacity:0.8;">80%</p>
Text with #ADE6CF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADE6CF;}
<p style="text-shadow: 3px 3px 1px #ADE6CF">Text here.</p>
This text has shadow with #ADE6CF color.
.textShadow {text-shadow: 3px 3px 1px #ADE6CF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADE6CF, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADE6CF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADE6CF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADE6CF, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADE6CF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADE6CF; -webkit-box-shadow: 1px 1px 3px 2px #ADE6CF; box-shadow: 1px 1px 3px 2px #ADE6CF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADE6CF; -webkit-box-shadow: 1px 1px 3px 2px #ADE6CF; box-shadow:1px 1px 3px 2px #ADE6CF;">
Div content here</div>
This text has color #ADE6CF on black background.
This text has color #ADE6CF on white background.
This text has black color on #ADE6CF background.
This text has white color on #ADE6CF background.