HEX: #AFC2EA
RGB: (175,194,234)
#AFC2EA contains red, green and blue colors in about the same proportion. Web safe color of #AFC2EA is #99CCFF (or #9CF).
#AFC2EA color RGB value is (175,194,234).
RGB: (175,194,234) (69%,76%,92%)
R 175 of 255 = 69%
G 194 of 255 = 76%
B 234 of 255 = 92%
R + G + B ~ 79%. #AFC2EA is quite light color.
R + G + B =
175 + 194 + 234 = 603 (100%)
R 175 of 603 ~ 29.02%
G 194 of 603 ~ 32.17%
B 234 of 603 ~ 38.81%
#AFC2EA color CMYK value is (25,17,0,8).
CMYK: (25,17,0,8) C25M17Y0K8 (25%,17%,0%,8%) (0.25/0.17/0.00/0.08)
AF | C2 | EA | |
---|---|---|---|
RGB | 175 | 194 | 234 |
HSL | 221° | 58.42% | 80.20% |
HSB/HSV | 221° | 25.21% | 91.76% |
CMYK | 25.21% | 17.09% | 0.00% |
8.24% |
HEX | AF | C2 | EA |
Decimal | 175 | 194 | 234 |
Binary | 10101111 | 11000010 | 11101010 |
Octal | 257 | 302 | 352 |
Examples of css and html codes for elements with #AFC2EA color. Also use rgb(175,194,234) instead hex code.
.myTextColor { color: #AFC2EA; }
<p style="color:#AFC2EA">This sample text font color is #AFC2EA.</p>
This text font color is #AFC2EA.
.myBgColor { background-color: #AFC2EA; }
<div style="background-color:#AFC2EA">Inner text</div>
This div background color is #AFC2EA.
.myBorderColor { border: 1px solid #AFC2EA; }
<div style="border:3px solid #AFC2EA">Div</div>
This div border color is #AFC2EA.
.myOpacity80 { color: #AFC2EA; opacity: 0.8; }
<p style="color:#AFC2EA;opacity:0.8;">80%</p>
Text with #AFC2EA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AFC2EA;}
<p style="text-shadow: 3px 3px 1px #AFC2EA">Text here.</p>
This text has shadow with #AFC2EA color.
.textShadow {text-shadow: 3px 3px 1px #AFC2EA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AFC2EA, 5px 5px 20px red">Text here.</p>
This text has shadow with #AFC2EA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AFC2EA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AFC2EA, Direction=45, Strength=4)">Text</p>
This text has shadow with #AFC2EA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AFC2EA; -webkit-box-shadow: 1px 1px 3px 2px #AFC2EA; box-shadow: 1px 1px 3px 2px #AFC2EA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AFC2EA; -webkit-box-shadow: 1px 1px 3px 2px #AFC2EA; box-shadow:1px 1px 3px 2px #AFC2EA;">
Div content here</div>
This text has color #AFC2EA on black background.
This text has color #AFC2EA on white background.
This text has black color on #AFC2EA background.
This text has white color on #AFC2EA background.