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