HEX: #AFBCDF
RGB: (175,188,223)
#AFBCDF contains red, green and blue colors in about the same proportion. Web safe color of #AFBCDF is #99CCCC (or #9CC).
#AFBCDF color RGB value is (175,188,223).
RGB: (175,188,223) (69%,74%,87%)
R 175 of 255 = 69%
G 188 of 255 = 74%
B 223 of 255 = 87%
R + G + B ~ 77%. #AFBCDF is quite light color.
R + G + B =
175 + 188 + 223 = 586 (100%)
R 175 of 586 ~ 29.86%
G 188 of 586 ~ 32.08%
B 223 of 586 ~ 38.05%
#AFBCDF color CMYK value is (22,16,0,13).
CMYK: (22,16,0,13) C22M16Y0K13 (22%,16%,0%,13%) (0.22/0.16/0.00/0.13)
AF | BC | DF | |
---|---|---|---|
RGB | 175 | 188 | 223 |
HSL | 224° | 42.86% | 78.04% |
HSB/HSV | 224° | 21.52% | 87.45% |
CMYK | 21.52% | 15.70% | 0.00% |
12.55% |
HEX | AF | BC | DF |
Decimal | 175 | 188 | 223 |
Binary | 10101111 | 10111100 | 11011111 |
Octal | 257 | 274 | 337 |
Examples of css and html codes for elements with #AFBCDF color. Also use rgb(175,188,223) instead hex code.
.myTextColor { color: #AFBCDF; }
<p style="color:#AFBCDF">This sample text font color is #AFBCDF.</p>
This text font color is #AFBCDF.
.myBgColor { background-color: #AFBCDF; }
<div style="background-color:#AFBCDF">Inner text</div>
This div background color is #AFBCDF.
.myBorderColor { border: 1px solid #AFBCDF; }
<div style="border:3px solid #AFBCDF">Div</div>
This div border color is #AFBCDF.
.myOpacity80 { color: #AFBCDF; opacity: 0.8; }
<p style="color:#AFBCDF;opacity:0.8;">80%</p>
Text with #AFBCDF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AFBCDF;}
<p style="text-shadow: 3px 3px 1px #AFBCDF">Text here.</p>
This text has shadow with #AFBCDF color.
.textShadow {text-shadow: 3px 3px 1px #AFBCDF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AFBCDF, 5px 5px 20px red">Text here.</p>
This text has shadow with #AFBCDF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AFBCDF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AFBCDF, Direction=45, Strength=4)">Text</p>
This text has shadow with #AFBCDF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AFBCDF; -webkit-box-shadow: 1px 1px 3px 2px #AFBCDF; box-shadow: 1px 1px 3px 2px #AFBCDF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AFBCDF; -webkit-box-shadow: 1px 1px 3px 2px #AFBCDF; box-shadow:1px 1px 3px 2px #AFBCDF;">
Div content here</div>
This text has color #AFBCDF on black background.
This text has color #AFBCDF on white background.
This text has black color on #AFBCDF background.
This text has white color on #AFBCDF background.