HEX: #ADD0DA
RGB: (173,208,218)
#ADD0DA contains red, green and blue colors in about the same proportion. Web safe color of #ADD0DA is #99CCCC (or #9CC).
#ADD0DA color RGB value is (173,208,218).
RGB: (173,208,218) (68%,82%,85%)
R 173 of 255 = 68%
G 208 of 255 = 82%
B 218 of 255 = 85%
R + G + B ~ 78%. #ADD0DA is quite light color.
R + G + B =
173 + 208 + 218 = 599 (100%)
R 173 of 599 ~ 28.88%
G 208 of 599 ~ 34.72%
B 218 of 599 ~ 36.39%
#ADD0DA color CMYK value is (21,5,0,15).
CMYK: (21,5,0,15) C21M5Y0K15 (21%,5%,0%,15%) (0.21/0.05/0.00/0.15)
AD | D0 | DA | |
---|---|---|---|
RGB | 173 | 208 | 218 |
HSL | 193° | 37.82% | 76.67% |
HSB/HSV | 193° | 20.64% | 85.49% |
CMYK | 20.64% | 4.59% | 0.00% |
14.51% |
HEX | AD | D0 | DA |
Decimal | 173 | 208 | 218 |
Binary | 10101101 | 11010000 | 11011010 |
Octal | 255 | 320 | 332 |
Examples of css and html codes for elements with #ADD0DA color. Also use rgb(173,208,218) instead hex code.
.myTextColor { color: #ADD0DA; }
<p style="color:#ADD0DA">This sample text font color is #ADD0DA.</p>
This text font color is #ADD0DA.
.myBgColor { background-color: #ADD0DA; }
<div style="background-color:#ADD0DA">Inner text</div>
This div background color is #ADD0DA.
.myBorderColor { border: 1px solid #ADD0DA; }
<div style="border:3px solid #ADD0DA">Div</div>
This div border color is #ADD0DA.
.myOpacity80 { color: #ADD0DA; opacity: 0.8; }
<p style="color:#ADD0DA;opacity:0.8;">80%</p>
Text with #ADD0DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADD0DA;}
<p style="text-shadow: 3px 3px 1px #ADD0DA">Text here.</p>
This text has shadow with #ADD0DA color.
.textShadow {text-shadow: 3px 3px 1px #ADD0DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADD0DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADD0DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADD0DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADD0DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADD0DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADD0DA; -webkit-box-shadow: 1px 1px 3px 2px #ADD0DA; box-shadow: 1px 1px 3px 2px #ADD0DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADD0DA; -webkit-box-shadow: 1px 1px 3px 2px #ADD0DA; box-shadow:1px 1px 3px 2px #ADD0DA;">
Div content here</div>
This text has color #ADD0DA on black background.
This text has color #ADD0DA on white background.
This text has black color on #ADD0DA background.
This text has white color on #ADD0DA background.