HEX: #ADDDDF
RGB: (173,221,223)
#ADDDDF contains red, green and blue colors in about the same proportion. Web safe color of #ADDDDF is #99CCCC (or #9CC).
#ADDDDF color RGB value is (173,221,223).
RGB: (173,221,223) (68%,87%,87%)
R 173 of 255 = 68%
G 221 of 255 = 87%
B 223 of 255 = 87%
R + G + B ~ 81%. #ADDDDF is quite light color.
R + G + B =
173 + 221 + 223 = 617 (100%)
R 173 of 617 ~ 28.04%
G 221 of 617 ~ 35.82%
B 223 of 617 ~ 36.14%
#ADDDDF color CMYK value is (22,1,0,13).
CMYK: (22,1,0,13) C22M1Y0K13 (22%,1%,0%,13%) (0.22/0.01/0.00/0.13)
AD | DD | DF | |
---|---|---|---|
RGB | 173 | 221 | 223 |
HSL | 182° | 43.86% | 77.65% |
HSB/HSV | 182° | 22.42% | 87.45% |
CMYK | 22.42% | 0.90% | 0.00% |
12.55% |
HEX | AD | DD | DF |
Decimal | 173 | 221 | 223 |
Binary | 10101101 | 11011101 | 11011111 |
Octal | 255 | 335 | 337 |
Examples of css and html codes for elements with #ADDDDF color. Also use rgb(173,221,223) instead hex code.
.myTextColor { color: #ADDDDF; }
<p style="color:#ADDDDF">This sample text font color is #ADDDDF.</p>
This text font color is #ADDDDF.
.myBgColor { background-color: #ADDDDF; }
<div style="background-color:#ADDDDF">Inner text</div>
This div background color is #ADDDDF.
.myBorderColor { border: 1px solid #ADDDDF; }
<div style="border:3px solid #ADDDDF">Div</div>
This div border color is #ADDDDF.
.myOpacity80 { color: #ADDDDF; opacity: 0.8; }
<p style="color:#ADDDDF;opacity:0.8;">80%</p>
Text with #ADDDDF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADDDDF;}
<p style="text-shadow: 3px 3px 1px #ADDDDF">Text here.</p>
This text has shadow with #ADDDDF color.
.textShadow {text-shadow: 3px 3px 1px #ADDDDF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADDDDF, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADDDDF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADDDDF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADDDDF, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADDDDF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADDDDF; -webkit-box-shadow: 1px 1px 3px 2px #ADDDDF; box-shadow: 1px 1px 3px 2px #ADDDDF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADDDDF; -webkit-box-shadow: 1px 1px 3px 2px #ADDDDF; box-shadow:1px 1px 3px 2px #ADDDDF;">
Div content here</div>
This text has color #ADDDDF on black background.
This text has color #ADDDDF on white background.
This text has black color on #ADDDDF background.
This text has white color on #ADDDDF background.