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