HEX: #ADFDDD
RGB: (173,253,221)
#ADFDDD contains mainly green and blue colors. Web safe color of #ADFDDD is #99FFCC (or #9FC).
#ADFDDD color RGB value is (173,253,221).
RGB: (173,253,221) (68%,99%,87%)
R 173 of 255 = 68%
G 253 of 255 = 99%
B 221 of 255 = 87%
R + G + B ~ 85%. #ADFDDD is quite light color.
R + G + B =
173 + 253 + 221 = 647 (100%)
R 173 of 647 ~ 26.74%
G 253 of 647 ~ 39.1%
B 221 of 647 ~ 34.16%
#ADFDDD color CMYK value is (32,0,13,1).
CMYK: (32,0,13,1) C32M0Y13K1 (32%,0%,13%,1%) (0.32/0.00/0.13/0.01)
AD | FD | DD | |
---|---|---|---|
RGB | 173 | 253 | 221 |
HSL | 156° | 95.24% | 83.53% |
HSB/HSV | 156° | 31.62% | 99.22% |
CMYK | 31.62% | 0.00% | 12.65% |
0.78% |
HEX | AD | FD | DD |
Decimal | 173 | 253 | 221 |
Binary | 10101101 | 11111101 | 11011101 |
Octal | 255 | 375 | 335 |
Examples of css and html codes for elements with #ADFDDD color. Also use rgb(173,253,221) instead hex code.
.myTextColor { color: #ADFDDD; }
<p style="color:#ADFDDD">This sample text font color is #ADFDDD.</p>
This text font color is #ADFDDD.
.myBgColor { background-color: #ADFDDD; }
<div style="background-color:#ADFDDD">Inner text</div>
This div background color is #ADFDDD.
.myBorderColor { border: 1px solid #ADFDDD; }
<div style="border:3px solid #ADFDDD">Div</div>
This div border color is #ADFDDD.
.myOpacity80 { color: #ADFDDD; opacity: 0.8; }
<p style="color:#ADFDDD;opacity:0.8;">80%</p>
Text with #ADFDDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADFDDD;}
<p style="text-shadow: 3px 3px 1px #ADFDDD">Text here.</p>
This text has shadow with #ADFDDD color.
.textShadow {text-shadow: 3px 3px 1px #ADFDDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADFDDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADFDDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADFDDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADFDDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADFDDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADFDDD; -webkit-box-shadow: 1px 1px 3px 2px #ADFDDD; box-shadow: 1px 1px 3px 2px #ADFDDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADFDDD; -webkit-box-shadow: 1px 1px 3px 2px #ADFDDD; box-shadow:1px 1px 3px 2px #ADFDDD;">
Div content here</div>
This text has color #ADFDDD on black background.
This text has color #ADFDDD on white background.
This text has black color on #ADFDDD background.
This text has white color on #ADFDDD background.