HEX: #ADEDC4
RGB: (173,237,196)
#ADEDC4 contains mainly green and blue colors. Web safe color of #ADEDC4 is #99FFCC (or #9FC).
#ADEDC4 color RGB value is (173,237,196).
RGB: (173,237,196) (68%,93%,77%)
R 173 of 255 = 68%
G 237 of 255 = 93%
B 196 of 255 = 77%
R + G + B ~ 79%. #ADEDC4 is quite light color.
R + G + B =
173 + 237 + 196 = 606 (100%)
R 173 of 606 ~ 28.55%
G 237 of 606 ~ 39.11%
B 196 of 606 ~ 32.34%
#ADEDC4 color CMYK value is (27,0,17,7).
CMYK: (27,0,17,7) C27M0Y17K7 (27%,0%,17%,7%) (0.27/0.00/0.17/0.07)
AD | ED | C4 | |
---|---|---|---|
RGB | 173 | 237 | 196 |
HSL | 142° | 64.00% | 80.39% |
HSB/HSV | 142° | 27.00% | 92.94% |
CMYK | 27.00% | 0.00% | 17.30% |
7.06% |
HEX | AD | ED | C4 |
Decimal | 173 | 237 | 196 |
Binary | 10101101 | 11101101 | 11000100 |
Octal | 255 | 355 | 304 |
Examples of css and html codes for elements with #ADEDC4 color. Also use rgb(173,237,196) instead hex code.
.myTextColor { color: #ADEDC4; }
<p style="color:#ADEDC4">This sample text font color is #ADEDC4.</p>
This text font color is #ADEDC4.
.myBgColor { background-color: #ADEDC4; }
<div style="background-color:#ADEDC4">Inner text</div>
This div background color is #ADEDC4.
.myBorderColor { border: 1px solid #ADEDC4; }
<div style="border:3px solid #ADEDC4">Div</div>
This div border color is #ADEDC4.
.myOpacity80 { color: #ADEDC4; opacity: 0.8; }
<p style="color:#ADEDC4;opacity:0.8;">80%</p>
Text with #ADEDC4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADEDC4;}
<p style="text-shadow: 3px 3px 1px #ADEDC4">Text here.</p>
This text has shadow with #ADEDC4 color.
.textShadow {text-shadow: 3px 3px 1px #ADEDC4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADEDC4, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADEDC4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADEDC4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADEDC4, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADEDC4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADEDC4; -webkit-box-shadow: 1px 1px 3px 2px #ADEDC4; box-shadow: 1px 1px 3px 2px #ADEDC4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADEDC4; -webkit-box-shadow: 1px 1px 3px 2px #ADEDC4; box-shadow:1px 1px 3px 2px #ADEDC4;">
Div content here</div>
This text has color #ADEDC4 on black background.
This text has color #ADEDC4 on white background.
This text has black color on #ADEDC4 background.
This text has white color on #ADEDC4 background.