HEX: #AFEED6
RGB: (175,238,214)
#AFEED6 contains mainly green and blue colors. Web safe color of #AFEED6 is #99FFCC (or #9FC).
#AFEED6 color RGB value is (175,238,214).
RGB: (175,238,214) (69%,93%,84%)
R 175 of 255 = 69%
G 238 of 255 = 93%
B 214 of 255 = 84%
R + G + B ~ 82%. #AFEED6 is quite light color.
R + G + B =
175 + 238 + 214 = 627 (100%)
R 175 of 627 ~ 27.91%
G 238 of 627 ~ 37.96%
B 214 of 627 ~ 34.13%
#AFEED6 color CMYK value is (26,0,10,7).
CMYK: (26,0,10,7) C26M0Y10K7 (26%,0%,10%,7%) (0.26/0.00/0.10/0.07)
AF | EE | D6 | |
---|---|---|---|
RGB | 175 | 238 | 214 |
HSL | 157° | 64.95% | 80.98% |
HSB/HSV | 157° | 26.47% | 93.33% |
CMYK | 26.47% | 0.00% | 10.08% |
6.67% |
HEX | AF | EE | D6 |
Decimal | 175 | 238 | 214 |
Binary | 10101111 | 11101110 | 11010110 |
Octal | 257 | 356 | 326 |
Examples of css and html codes for elements with #AFEED6 color. Also use rgb(175,238,214) instead hex code.
.myTextColor { color: #AFEED6; }
<p style="color:#AFEED6">This sample text font color is #AFEED6.</p>
This text font color is #AFEED6.
.myBgColor { background-color: #AFEED6; }
<div style="background-color:#AFEED6">Inner text</div>
This div background color is #AFEED6.
.myBorderColor { border: 1px solid #AFEED6; }
<div style="border:3px solid #AFEED6">Div</div>
This div border color is #AFEED6.
.myOpacity80 { color: #AFEED6; opacity: 0.8; }
<p style="color:#AFEED6;opacity:0.8;">80%</p>
Text with #AFEED6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AFEED6;}
<p style="text-shadow: 3px 3px 1px #AFEED6">Text here.</p>
This text has shadow with #AFEED6 color.
.textShadow {text-shadow: 3px 3px 1px #AFEED6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AFEED6, 5px 5px 20px red">Text here.</p>
This text has shadow with #AFEED6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AFEED6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AFEED6, Direction=45, Strength=4)">Text</p>
This text has shadow with #AFEED6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AFEED6; -webkit-box-shadow: 1px 1px 3px 2px #AFEED6; box-shadow: 1px 1px 3px 2px #AFEED6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AFEED6; -webkit-box-shadow: 1px 1px 3px 2px #AFEED6; box-shadow:1px 1px 3px 2px #AFEED6;">
Div content here</div>
This text has color #AFEED6 on black background.
This text has color #AFEED6 on white background.
This text has black color on #AFEED6 background.
This text has white color on #AFEED6 background.