HEX: #AFC2EC
RGB: (175,194,236)
#AFC2EC contains mainly green and blue colors. Web safe color of #AFC2EC is #99CCFF (or #9CF).
#AFC2EC color RGB value is (175,194,236).
RGB: (175,194,236) (69%,76%,93%)
R 175 of 255 = 69%
G 194 of 255 = 76%
B 236 of 255 = 93%
R + G + B ~ 79%. #AFC2EC is quite light color.
R + G + B =
175 + 194 + 236 = 605 (100%)
R 175 of 605 ~ 28.93%
G 194 of 605 ~ 32.07%
B 236 of 605 ~ 39.01%
#AFC2EC color CMYK value is (26,18,0,7).
CMYK: (26,18,0,7) C26M18Y0K7 (26%,18%,0%,7%) (0.26/0.18/0.00/0.07)
AF | C2 | EC | |
---|---|---|---|
RGB | 175 | 194 | 236 |
HSL | 221° | 61.62% | 80.59% |
HSB/HSV | 221° | 25.85% | 92.55% |
CMYK | 25.85% | 17.80% | 0.00% |
7.45% |
HEX | AF | C2 | EC |
Decimal | 175 | 194 | 236 |
Binary | 10101111 | 11000010 | 11101100 |
Octal | 257 | 302 | 354 |
Examples of css and html codes for elements with #AFC2EC color. Also use rgb(175,194,236) instead hex code.
.myTextColor { color: #AFC2EC; }
<p style="color:#AFC2EC">This sample text font color is #AFC2EC.</p>
This text font color is #AFC2EC.
.myBgColor { background-color: #AFC2EC; }
<div style="background-color:#AFC2EC">Inner text</div>
This div background color is #AFC2EC.
.myBorderColor { border: 1px solid #AFC2EC; }
<div style="border:3px solid #AFC2EC">Div</div>
This div border color is #AFC2EC.
.myOpacity80 { color: #AFC2EC; opacity: 0.8; }
<p style="color:#AFC2EC;opacity:0.8;">80%</p>
Text with #AFC2EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AFC2EC;}
<p style="text-shadow: 3px 3px 1px #AFC2EC">Text here.</p>
This text has shadow with #AFC2EC color.
.textShadow {text-shadow: 3px 3px 1px #AFC2EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AFC2EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #AFC2EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AFC2EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AFC2EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #AFC2EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AFC2EC; -webkit-box-shadow: 1px 1px 3px 2px #AFC2EC; box-shadow: 1px 1px 3px 2px #AFC2EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AFC2EC; -webkit-box-shadow: 1px 1px 3px 2px #AFC2EC; box-shadow:1px 1px 3px 2px #AFC2EC;">
Div content here</div>
This text has color #AFC2EC on black background.
This text has color #AFC2EC on white background.
This text has black color on #AFC2EC background.
This text has white color on #AFC2EC background.