HEX: #ADDEC9
RGB: (173,222,201)
#ADDEC9 contains red, green and blue colors in about the same proportion. Web safe color of #ADDEC9 is #99CCCC (or #9CC).
#ADDEC9 color RGB value is (173,222,201).
RGB: (173,222,201) (68%,87%,79%)
R 173 of 255 = 68%
G 222 of 255 = 87%
B 201 of 255 = 79%
R + G + B ~ 78%. #ADDEC9 is quite light color.
R + G + B =
173 + 222 + 201 = 596 (100%)
R 173 of 596 ~ 29.03%
G 222 of 596 ~ 37.25%
B 201 of 596 ~ 33.72%
#ADDEC9 color CMYK value is (22,0,9,13).
CMYK: (22,0,9,13) C22M0Y9K13 (22%,0%,9%,13%) (0.22/0.00/0.09/0.13)
AD | DE | C9 | |
---|---|---|---|
RGB | 173 | 222 | 201 |
HSL | 154° | 42.61% | 77.45% |
HSB/HSV | 154° | 22.07% | 87.06% |
CMYK | 22.07% | 0.00% | 9.46% |
12.94% |
HEX | AD | DE | C9 |
Decimal | 173 | 222 | 201 |
Binary | 10101101 | 11011110 | 11001001 |
Octal | 255 | 336 | 311 |
Examples of css and html codes for elements with #ADDEC9 color. Also use rgb(173,222,201) instead hex code.
.myTextColor { color: #ADDEC9; }
<p style="color:#ADDEC9">This sample text font color is #ADDEC9.</p>
This text font color is #ADDEC9.
.myBgColor { background-color: #ADDEC9; }
<div style="background-color:#ADDEC9">Inner text</div>
This div background color is #ADDEC9.
.myBorderColor { border: 1px solid #ADDEC9; }
<div style="border:3px solid #ADDEC9">Div</div>
This div border color is #ADDEC9.
.myOpacity80 { color: #ADDEC9; opacity: 0.8; }
<p style="color:#ADDEC9;opacity:0.8;">80%</p>
Text with #ADDEC9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADDEC9;}
<p style="text-shadow: 3px 3px 1px #ADDEC9">Text here.</p>
This text has shadow with #ADDEC9 color.
.textShadow {text-shadow: 3px 3px 1px #ADDEC9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADDEC9, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADDEC9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADDEC9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADDEC9, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADDEC9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADDEC9; -webkit-box-shadow: 1px 1px 3px 2px #ADDEC9; box-shadow: 1px 1px 3px 2px #ADDEC9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADDEC9; -webkit-box-shadow: 1px 1px 3px 2px #ADDEC9; box-shadow:1px 1px 3px 2px #ADDEC9;">
Div content here</div>
This text has color #ADDEC9 on black background.
This text has color #ADDEC9 on white background.
This text has black color on #ADDEC9 background.
This text has white color on #ADDEC9 background.