HEX: #AFB9DE
RGB: (175,185,222)
#AFB9DE contains red, green and blue colors in about the same proportion. Web safe color of #AFB9DE is #99CCCC (or #9CC).
#AFB9DE color RGB value is (175,185,222).
RGB: (175,185,222) (69%,73%,87%)
R 175 of 255 = 69%
G 185 of 255 = 73%
B 222 of 255 = 87%
R + G + B ~ 76%. #AFB9DE is quite light color.
R + G + B =
175 + 185 + 222 = 582 (100%)
R 175 of 582 ~ 30.07%
G 185 of 582 ~ 31.79%
B 222 of 582 ~ 38.14%
#AFB9DE color CMYK value is (21,17,0,13).
CMYK: (21,17,0,13) C21M17Y0K13 (21%,17%,0%,13%) (0.21/0.17/0.00/0.13)
AF | B9 | DE | |
---|---|---|---|
RGB | 175 | 185 | 222 |
HSL | 227° | 41.59% | 77.84% |
HSB/HSV | 227° | 21.17% | 87.06% |
CMYK | 21.17% | 16.67% | 0.00% |
12.94% |
HEX | AF | B9 | DE |
Decimal | 175 | 185 | 222 |
Binary | 10101111 | 10111001 | 11011110 |
Octal | 257 | 271 | 336 |
Examples of css and html codes for elements with #AFB9DE color. Also use rgb(175,185,222) instead hex code.
.myTextColor { color: #AFB9DE; }
<p style="color:#AFB9DE">This sample text font color is #AFB9DE.</p>
This text font color is #AFB9DE.
.myBgColor { background-color: #AFB9DE; }
<div style="background-color:#AFB9DE">Inner text</div>
This div background color is #AFB9DE.
.myBorderColor { border: 1px solid #AFB9DE; }
<div style="border:3px solid #AFB9DE">Div</div>
This div border color is #AFB9DE.
.myOpacity80 { color: #AFB9DE; opacity: 0.8; }
<p style="color:#AFB9DE;opacity:0.8;">80%</p>
Text with #AFB9DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AFB9DE;}
<p style="text-shadow: 3px 3px 1px #AFB9DE">Text here.</p>
This text has shadow with #AFB9DE color.
.textShadow {text-shadow: 3px 3px 1px #AFB9DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AFB9DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #AFB9DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AFB9DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AFB9DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #AFB9DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AFB9DE; -webkit-box-shadow: 1px 1px 3px 2px #AFB9DE; box-shadow: 1px 1px 3px 2px #AFB9DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AFB9DE; -webkit-box-shadow: 1px 1px 3px 2px #AFB9DE; box-shadow:1px 1px 3px 2px #AFB9DE;">
Div content here</div>
This text has color #AFB9DE on black background.
This text has color #AFB9DE on white background.
This text has black color on #AFB9DE background.
This text has white color on #AFB9DE background.