HEX: #ADE4CB
RGB: (173,228,203)
#ADE4CB contains red, green and blue colors in about the same proportion. Web safe color of #ADE4CB is #99CCCC (or #9CC).
#ADE4CB color RGB value is (173,228,203).
RGB: (173,228,203) (68%,89%,80%)
R 173 of 255 = 68%
G 228 of 255 = 89%
B 203 of 255 = 80%
R + G + B ~ 79%. #ADE4CB is quite light color.
R + G + B =
173 + 228 + 203 = 604 (100%)
R 173 of 604 ~ 28.64%
G 228 of 604 ~ 37.75%
B 203 of 604 ~ 33.61%
#ADE4CB color CMYK value is (24,0,11,11).
CMYK: (24,0,11,11) C24M0Y11K11 (24%,0%,11%,11%) (0.24/0.00/0.11/0.11)
AD | E4 | CB | |
---|---|---|---|
RGB | 173 | 228 | 203 |
HSL | 153° | 50.46% | 78.63% |
HSB/HSV | 153° | 24.12% | 89.41% |
CMYK | 24.12% | 0.00% | 10.96% |
10.59% |
HEX | AD | E4 | CB |
Decimal | 173 | 228 | 203 |
Binary | 10101101 | 11100100 | 11001011 |
Octal | 255 | 344 | 313 |
Examples of css and html codes for elements with #ADE4CB color. Also use rgb(173,228,203) instead hex code.
.myTextColor { color: #ADE4CB; }
<p style="color:#ADE4CB">This sample text font color is #ADE4CB.</p>
This text font color is #ADE4CB.
.myBgColor { background-color: #ADE4CB; }
<div style="background-color:#ADE4CB">Inner text</div>
This div background color is #ADE4CB.
.myBorderColor { border: 1px solid #ADE4CB; }
<div style="border:3px solid #ADE4CB">Div</div>
This div border color is #ADE4CB.
.myOpacity80 { color: #ADE4CB; opacity: 0.8; }
<p style="color:#ADE4CB;opacity:0.8;">80%</p>
Text with #ADE4CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADE4CB;}
<p style="text-shadow: 3px 3px 1px #ADE4CB">Text here.</p>
This text has shadow with #ADE4CB color.
.textShadow {text-shadow: 3px 3px 1px #ADE4CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADE4CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADE4CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADE4CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADE4CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADE4CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADE4CB; -webkit-box-shadow: 1px 1px 3px 2px #ADE4CB; box-shadow: 1px 1px 3px 2px #ADE4CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADE4CB; -webkit-box-shadow: 1px 1px 3px 2px #ADE4CB; box-shadow:1px 1px 3px 2px #ADE4CB;">
Div content here</div>
This text has color #ADE4CB on black background.
This text has color #ADE4CB on white background.
This text has black color on #ADE4CB background.
This text has white color on #ADE4CB background.