HEX: #AFEDE0
RGB: (175,237,224)
#AFEDE0 contains mainly green and blue colors. Web safe color of #AFEDE0 is #99FFCC (or #9FC).
#AFEDE0 color RGB value is (175,237,224).
RGB: (175,237,224) (69%,93%,88%)
R 175 of 255 = 69%
G 237 of 255 = 93%
B 224 of 255 = 88%
R + G + B ~ 83%. #AFEDE0 is quite light color.
R + G + B =
175 + 237 + 224 = 636 (100%)
R 175 of 636 ~ 27.52%
G 237 of 636 ~ 37.26%
B 224 of 636 ~ 35.22%
#AFEDE0 color CMYK value is (26,0,5,7).
CMYK: (26,0,5,7) C26M0Y5K7 (26%,0%,5%,7%) (0.26/0.00/0.05/0.07)
AF | ED | E0 | |
---|---|---|---|
RGB | 175 | 237 | 224 |
HSL | 167° | 63.27% | 80.78% |
HSB/HSV | 167° | 26.16% | 92.94% |
CMYK | 26.16% | 0.00% | 5.49% |
7.06% |
HEX | AF | ED | E0 |
Decimal | 175 | 237 | 224 |
Binary | 10101111 | 11101101 | 11100000 |
Octal | 257 | 355 | 340 |
Examples of css and html codes for elements with #AFEDE0 color. Also use rgb(175,237,224) instead hex code.
.myTextColor { color: #AFEDE0; }
<p style="color:#AFEDE0">This sample text font color is #AFEDE0.</p>
This text font color is #AFEDE0.
.myBgColor { background-color: #AFEDE0; }
<div style="background-color:#AFEDE0">Inner text</div>
This div background color is #AFEDE0.
.myBorderColor { border: 1px solid #AFEDE0; }
<div style="border:3px solid #AFEDE0">Div</div>
This div border color is #AFEDE0.
.myOpacity80 { color: #AFEDE0; opacity: 0.8; }
<p style="color:#AFEDE0;opacity:0.8;">80%</p>
Text with #AFEDE0 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AFEDE0;}
<p style="text-shadow: 3px 3px 1px #AFEDE0">Text here.</p>
This text has shadow with #AFEDE0 color.
.textShadow {text-shadow: 3px 3px 1px #AFEDE0, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AFEDE0, 5px 5px 20px red">Text here.</p>
This text has shadow with #AFEDE0 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AFEDE0, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AFEDE0, Direction=45, Strength=4)">Text</p>
This text has shadow with #AFEDE0 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AFEDE0; -webkit-box-shadow: 1px 1px 3px 2px #AFEDE0; box-shadow: 1px 1px 3px 2px #AFEDE0; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AFEDE0; -webkit-box-shadow: 1px 1px 3px 2px #AFEDE0; box-shadow:1px 1px 3px 2px #AFEDE0;">
Div content here</div>
This text has color #AFEDE0 on black background.
This text has color #AFEDE0 on white background.
This text has black color on #AFEDE0 background.
This text has white color on #AFEDE0 background.