HEX: #ADEAD9
RGB: (173,234,217)
#ADEAD9 contains mainly green and blue colors. Web safe color of #ADEAD9 is #99FFCC (or #9FC).
#ADEAD9 color RGB value is (173,234,217).
RGB: (173,234,217) (68%,92%,85%)
R 173 of 255 = 68%
G 234 of 255 = 92%
B 217 of 255 = 85%
R + G + B ~ 82%. #ADEAD9 is quite light color.
R + G + B =
173 + 234 + 217 = 624 (100%)
R 173 of 624 ~ 27.72%
G 234 of 624 ~ 37.5%
B 217 of 624 ~ 34.78%
#ADEAD9 color CMYK value is (26,0,7,8).
CMYK: (26,0,7,8) C26M0Y7K8 (26%,0%,7%,8%) (0.26/0.00/0.07/0.08)
AD | EA | D9 | |
---|---|---|---|
RGB | 173 | 234 | 217 |
HSL | 163° | 59.22% | 79.80% |
HSB/HSV | 163° | 26.07% | 91.76% |
CMYK | 26.07% | 0.00% | 7.26% |
8.24% |
HEX | AD | EA | D9 |
Decimal | 173 | 234 | 217 |
Binary | 10101101 | 11101010 | 11011001 |
Octal | 255 | 352 | 331 |
Examples of css and html codes for elements with #ADEAD9 color. Also use rgb(173,234,217) instead hex code.
.myTextColor { color: #ADEAD9; }
<p style="color:#ADEAD9">This sample text font color is #ADEAD9.</p>
This text font color is #ADEAD9.
.myBgColor { background-color: #ADEAD9; }
<div style="background-color:#ADEAD9">Inner text</div>
This div background color is #ADEAD9.
.myBorderColor { border: 1px solid #ADEAD9; }
<div style="border:3px solid #ADEAD9">Div</div>
This div border color is #ADEAD9.
.myOpacity80 { color: #ADEAD9; opacity: 0.8; }
<p style="color:#ADEAD9;opacity:0.8;">80%</p>
Text with #ADEAD9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADEAD9;}
<p style="text-shadow: 3px 3px 1px #ADEAD9">Text here.</p>
This text has shadow with #ADEAD9 color.
.textShadow {text-shadow: 3px 3px 1px #ADEAD9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADEAD9, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADEAD9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADEAD9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADEAD9, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADEAD9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADEAD9; -webkit-box-shadow: 1px 1px 3px 2px #ADEAD9; box-shadow: 1px 1px 3px 2px #ADEAD9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADEAD9; -webkit-box-shadow: 1px 1px 3px 2px #ADEAD9; box-shadow:1px 1px 3px 2px #ADEAD9;">
Div content here</div>
This text has color #ADEAD9 on black background.
This text has color #ADEAD9 on white background.
This text has black color on #ADEAD9 background.
This text has white color on #ADEAD9 background.