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