HEX: #AFA9EB
RGB: (175,169,235)
#AFA9EB contains mainly blue color. Web safe color of #AFA9EB is #9999FF (or #99F).
#AFA9EB color RGB value is (175,169,235).
RGB: (175,169,235) (69%,66%,92%)
R 175 of 255 = 69%
G 169 of 255 = 66%
B 235 of 255 = 92%
R + G + B ~ 76%. #AFA9EB is quite light color.
R + G + B =
175 + 169 + 235 = 579 (100%)
R 175 of 579 ~ 30.22%
G 169 of 579 ~ 29.19%
B 235 of 579 ~ 40.59%
#AFA9EB color CMYK value is (26,28,0,8).
CMYK: (26,28,0,8) C26M28Y0K8 (26%,28%,0%,8%) (0.26/0.28/0.00/0.08)
AF | A9 | EB | |
---|---|---|---|
RGB | 175 | 169 | 235 |
HSL | 245° | 62.26% | 79.22% |
HSB/HSV | 245° | 28.09% | 92.16% |
CMYK | 25.53% | 28.09% | 0.00% |
7.84% |
HEX | AF | A9 | EB |
Decimal | 175 | 169 | 235 |
Binary | 10101111 | 10101001 | 11101011 |
Octal | 257 | 251 | 353 |
Examples of css and html codes for elements with #AFA9EB color. Also use rgb(175,169,235) instead hex code.
.myTextColor { color: #AFA9EB; }
<p style="color:#AFA9EB">This sample text font color is #AFA9EB.</p>
This text font color is #AFA9EB.
.myBgColor { background-color: #AFA9EB; }
<div style="background-color:#AFA9EB">Inner text</div>
This div background color is #AFA9EB.
.myBorderColor { border: 1px solid #AFA9EB; }
<div style="border:3px solid #AFA9EB">Div</div>
This div border color is #AFA9EB.
.myOpacity80 { color: #AFA9EB; opacity: 0.8; }
<p style="color:#AFA9EB;opacity:0.8;">80%</p>
Text with #AFA9EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AFA9EB;}
<p style="text-shadow: 3px 3px 1px #AFA9EB">Text here.</p>
This text has shadow with #AFA9EB color.
.textShadow {text-shadow: 3px 3px 1px #AFA9EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AFA9EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #AFA9EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AFA9EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AFA9EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #AFA9EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AFA9EB; -webkit-box-shadow: 1px 1px 3px 2px #AFA9EB; box-shadow: 1px 1px 3px 2px #AFA9EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AFA9EB; -webkit-box-shadow: 1px 1px 3px 2px #AFA9EB; box-shadow:1px 1px 3px 2px #AFA9EB;">
Div content here</div>
This text has color #AFA9EB on black background.
This text has color #AFA9EB on white background.
This text has black color on #AFA9EB background.
This text has white color on #AFA9EB background.