HEX: #AFEBE9
RGB: (175,235,233)
#AFEBE9 contains mainly green and blue colors. Web safe color of #AFEBE9 is #99FFFF (or #9FF).
#AFEBE9 color RGB value is (175,235,233).
RGB: (175,235,233) (69%,92%,91%)
R 175 of 255 = 69%
G 235 of 255 = 92%
B 233 of 255 = 91%
R + G + B ~ 84%. #AFEBE9 is quite light color.
R + G + B =
175 + 235 + 233 = 643 (100%)
R 175 of 643 ~ 27.22%
G 235 of 643 ~ 36.55%
B 233 of 643 ~ 36.24%
#AFEBE9 color CMYK value is (26,0,1,8).
CMYK: (26,0,1,8) C26M0Y1K8 (26%,0%,1%,8%) (0.26/0.00/0.01/0.08)
AF | EB | E9 | |
---|---|---|---|
RGB | 175 | 235 | 233 |
HSL | 178° | 60.00% | 80.39% |
HSB/HSV | 178° | 25.53% | 92.16% |
CMYK | 25.53% | 0.00% | 0.85% |
7.84% |
HEX | AF | EB | E9 |
Decimal | 175 | 235 | 233 |
Binary | 10101111 | 11101011 | 11101001 |
Octal | 257 | 353 | 351 |
Examples of css and html codes for elements with #AFEBE9 color. Also use rgb(175,235,233) instead hex code.
.myTextColor { color: #AFEBE9; }
<p style="color:#AFEBE9">This sample text font color is #AFEBE9.</p>
This text font color is #AFEBE9.
.myBgColor { background-color: #AFEBE9; }
<div style="background-color:#AFEBE9">Inner text</div>
This div background color is #AFEBE9.
.myBorderColor { border: 1px solid #AFEBE9; }
<div style="border:3px solid #AFEBE9">Div</div>
This div border color is #AFEBE9.
.myOpacity80 { color: #AFEBE9; opacity: 0.8; }
<p style="color:#AFEBE9;opacity:0.8;">80%</p>
Text with #AFEBE9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AFEBE9;}
<p style="text-shadow: 3px 3px 1px #AFEBE9">Text here.</p>
This text has shadow with #AFEBE9 color.
.textShadow {text-shadow: 3px 3px 1px #AFEBE9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AFEBE9, 5px 5px 20px red">Text here.</p>
This text has shadow with #AFEBE9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AFEBE9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AFEBE9, Direction=45, Strength=4)">Text</p>
This text has shadow with #AFEBE9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AFEBE9; -webkit-box-shadow: 1px 1px 3px 2px #AFEBE9; box-shadow: 1px 1px 3px 2px #AFEBE9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AFEBE9; -webkit-box-shadow: 1px 1px 3px 2px #AFEBE9; box-shadow:1px 1px 3px 2px #AFEBE9;">
Div content here</div>
This text has color #AFEBE9 on black background.
This text has color #AFEBE9 on white background.
This text has black color on #AFEBE9 background.
This text has white color on #AFEBE9 background.