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