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