HEX: #ADEFDD
RGB: (173,239,221)
#ADEFDD contains mainly green and blue colors. Web safe color of #ADEFDD is #99FFCC (or #9FC).
#ADEFDD color RGB value is (173,239,221).
RGB: (173,239,221) (68%,94%,87%)
R 173 of 255 = 68%
G 239 of 255 = 94%
B 221 of 255 = 87%
R + G + B ~ 83%. #ADEFDD is quite light color.
R + G + B =
173 + 239 + 221 = 633 (100%)
R 173 of 633 ~ 27.33%
G 239 of 633 ~ 37.76%
B 221 of 633 ~ 34.91%
#ADEFDD color CMYK value is (28,0,8,6).
CMYK: (28,0,8,6) C28M0Y8K6 (28%,0%,8%,6%) (0.28/0.00/0.08/0.06)
AD | EF | DD | |
---|---|---|---|
RGB | 173 | 239 | 221 |
HSL | 164° | 67.35% | 80.78% |
HSB/HSV | 164° | 27.62% | 93.73% |
CMYK | 27.62% | 0.00% | 7.53% |
6.27% |
HEX | AD | EF | DD |
Decimal | 173 | 239 | 221 |
Binary | 10101101 | 11101111 | 11011101 |
Octal | 255 | 357 | 335 |
Examples of css and html codes for elements with #ADEFDD color. Also use rgb(173,239,221) instead hex code.
.myTextColor { color: #ADEFDD; }
<p style="color:#ADEFDD">This sample text font color is #ADEFDD.</p>
This text font color is #ADEFDD.
.myBgColor { background-color: #ADEFDD; }
<div style="background-color:#ADEFDD">Inner text</div>
This div background color is #ADEFDD.
.myBorderColor { border: 1px solid #ADEFDD; }
<div style="border:3px solid #ADEFDD">Div</div>
This div border color is #ADEFDD.
.myOpacity80 { color: #ADEFDD; opacity: 0.8; }
<p style="color:#ADEFDD;opacity:0.8;">80%</p>
Text with #ADEFDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADEFDD;}
<p style="text-shadow: 3px 3px 1px #ADEFDD">Text here.</p>
This text has shadow with #ADEFDD color.
.textShadow {text-shadow: 3px 3px 1px #ADEFDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADEFDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADEFDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADEFDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADEFDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADEFDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADEFDD; -webkit-box-shadow: 1px 1px 3px 2px #ADEFDD; box-shadow: 1px 1px 3px 2px #ADEFDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADEFDD; -webkit-box-shadow: 1px 1px 3px 2px #ADEFDD; box-shadow:1px 1px 3px 2px #ADEFDD;">
Div content here</div>
This text has color #ADEFDD on black background.
This text has color #ADEFDD on white background.
This text has black color on #ADEFDD background.
This text has white color on #ADEFDD background.