HEX: #ADECCA
RGB: (173,236,202)
#ADECCA contains mainly green and blue colors. Web safe color of #ADECCA is #99FFCC (or #9FC).
#ADECCA color RGB value is (173,236,202).
RGB: (173,236,202) (68%,93%,79%)
R 173 of 255 = 68%
G 236 of 255 = 93%
B 202 of 255 = 79%
R + G + B ~ 80%. #ADECCA is quite light color.
R + G + B =
173 + 236 + 202 = 611 (100%)
R 173 of 611 ~ 28.31%
G 236 of 611 ~ 38.63%
B 202 of 611 ~ 33.06%
#ADECCA color CMYK value is (27,0,14,7).
CMYK: (27,0,14,7) C27M0Y14K7 (27%,0%,14%,7%) (0.27/0.00/0.14/0.07)
AD | EC | CA | |
---|---|---|---|
RGB | 173 | 236 | 202 |
HSL | 148° | 62.38% | 80.20% |
HSB/HSV | 148° | 26.69% | 92.55% |
CMYK | 26.69% | 0.00% | 14.41% |
7.45% |
HEX | AD | EC | CA |
Decimal | 173 | 236 | 202 |
Binary | 10101101 | 11101100 | 11001010 |
Octal | 255 | 354 | 312 |
Examples of css and html codes for elements with #ADECCA color. Also use rgb(173,236,202) instead hex code.
.myTextColor { color: #ADECCA; }
<p style="color:#ADECCA">This sample text font color is #ADECCA.</p>
This text font color is #ADECCA.
.myBgColor { background-color: #ADECCA; }
<div style="background-color:#ADECCA">Inner text</div>
This div background color is #ADECCA.
.myBorderColor { border: 1px solid #ADECCA; }
<div style="border:3px solid #ADECCA">Div</div>
This div border color is #ADECCA.
.myOpacity80 { color: #ADECCA; opacity: 0.8; }
<p style="color:#ADECCA;opacity:0.8;">80%</p>
Text with #ADECCA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADECCA;}
<p style="text-shadow: 3px 3px 1px #ADECCA">Text here.</p>
This text has shadow with #ADECCA color.
.textShadow {text-shadow: 3px 3px 1px #ADECCA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADECCA, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADECCA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADECCA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADECCA, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADECCA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADECCA; -webkit-box-shadow: 1px 1px 3px 2px #ADECCA; box-shadow: 1px 1px 3px 2px #ADECCA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADECCA; -webkit-box-shadow: 1px 1px 3px 2px #ADECCA; box-shadow:1px 1px 3px 2px #ADECCA;">
Div content here</div>
This text has color #ADECCA on black background.
This text has color #ADECCA on white background.
This text has black color on #ADECCA background.
This text has white color on #ADECCA background.