HEX: #AFBADD
RGB: (175,186,221)
#AFBADD contains red, green and blue colors in about the same proportion. Web safe color of #AFBADD is #99CCCC (or #9CC).
#AFBADD color RGB value is (175,186,221).
RGB: (175,186,221) (69%,73%,87%)
R 175 of 255 = 69%
G 186 of 255 = 73%
B 221 of 255 = 87%
R + G + B ~ 76%. #AFBADD is quite light color.
R + G + B =
175 + 186 + 221 = 582 (100%)
R 175 of 582 ~ 30.07%
G 186 of 582 ~ 31.96%
B 221 of 582 ~ 37.97%
#AFBADD color CMYK value is (21,16,0,13).
CMYK: (21,16,0,13) C21M16Y0K13 (21%,16%,0%,13%) (0.21/0.16/0.00/0.13)
AF | BA | DD | |
---|---|---|---|
RGB | 175 | 186 | 221 |
HSL | 226° | 40.35% | 77.65% |
HSB/HSV | 226° | 20.81% | 86.67% |
CMYK | 20.81% | 15.84% | 0.00% |
13.33% |
HEX | AF | BA | DD |
Decimal | 175 | 186 | 221 |
Binary | 10101111 | 10111010 | 11011101 |
Octal | 257 | 272 | 335 |
Examples of css and html codes for elements with #AFBADD color. Also use rgb(175,186,221) instead hex code.
.myTextColor { color: #AFBADD; }
<p style="color:#AFBADD">This sample text font color is #AFBADD.</p>
This text font color is #AFBADD.
.myBgColor { background-color: #AFBADD; }
<div style="background-color:#AFBADD">Inner text</div>
This div background color is #AFBADD.
.myBorderColor { border: 1px solid #AFBADD; }
<div style="border:3px solid #AFBADD">Div</div>
This div border color is #AFBADD.
.myOpacity80 { color: #AFBADD; opacity: 0.8; }
<p style="color:#AFBADD;opacity:0.8;">80%</p>
Text with #AFBADD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AFBADD;}
<p style="text-shadow: 3px 3px 1px #AFBADD">Text here.</p>
This text has shadow with #AFBADD color.
.textShadow {text-shadow: 3px 3px 1px #AFBADD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AFBADD, 5px 5px 20px red">Text here.</p>
This text has shadow with #AFBADD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AFBADD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AFBADD, Direction=45, Strength=4)">Text</p>
This text has shadow with #AFBADD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AFBADD; -webkit-box-shadow: 1px 1px 3px 2px #AFBADD; box-shadow: 1px 1px 3px 2px #AFBADD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AFBADD; -webkit-box-shadow: 1px 1px 3px 2px #AFBADD; box-shadow:1px 1px 3px 2px #AFBADD;">
Div content here</div>
This text has color #AFBADD on black background.
This text has color #AFBADD on white background.
This text has black color on #AFBADD background.
This text has white color on #AFBADD background.