HEX: #AFB5ED
RGB: (175,181,237)
#AFB5ED contains mainly green and blue colors. Web safe color of #AFB5ED is #99CCFF (or #9CF).
#AFB5ED color RGB value is (175,181,237).
RGB: (175,181,237) (69%,71%,93%)
R 175 of 255 = 69%
G 181 of 255 = 71%
B 237 of 255 = 93%
R + G + B ~ 78%. #AFB5ED is quite light color.
R + G + B =
175 + 181 + 237 = 593 (100%)
R 175 of 593 ~ 29.51%
G 181 of 593 ~ 30.52%
B 237 of 593 ~ 39.97%
#AFB5ED color CMYK value is (26,24,0,7).
CMYK: (26,24,0,7) C26M24Y0K7 (26%,24%,0%,7%) (0.26/0.24/0.00/0.07)
AF | B5 | ED | |
---|---|---|---|
RGB | 175 | 181 | 237 |
HSL | 234° | 63.27% | 80.78% |
HSB/HSV | 234° | 26.16% | 92.94% |
CMYK | 26.16% | 23.63% | 0.00% |
7.06% |
HEX | AF | B5 | ED |
Decimal | 175 | 181 | 237 |
Binary | 10101111 | 10110101 | 11101101 |
Octal | 257 | 265 | 355 |
Examples of css and html codes for elements with #AFB5ED color. Also use rgb(175,181,237) instead hex code.
.myTextColor { color: #AFB5ED; }
<p style="color:#AFB5ED">This sample text font color is #AFB5ED.</p>
This text font color is #AFB5ED.
.myBgColor { background-color: #AFB5ED; }
<div style="background-color:#AFB5ED">Inner text</div>
This div background color is #AFB5ED.
.myBorderColor { border: 1px solid #AFB5ED; }
<div style="border:3px solid #AFB5ED">Div</div>
This div border color is #AFB5ED.
.myOpacity80 { color: #AFB5ED; opacity: 0.8; }
<p style="color:#AFB5ED;opacity:0.8;">80%</p>
Text with #AFB5ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AFB5ED;}
<p style="text-shadow: 3px 3px 1px #AFB5ED">Text here.</p>
This text has shadow with #AFB5ED color.
.textShadow {text-shadow: 3px 3px 1px #AFB5ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AFB5ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #AFB5ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AFB5ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AFB5ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #AFB5ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AFB5ED; -webkit-box-shadow: 1px 1px 3px 2px #AFB5ED; box-shadow: 1px 1px 3px 2px #AFB5ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AFB5ED; -webkit-box-shadow: 1px 1px 3px 2px #AFB5ED; box-shadow:1px 1px 3px 2px #AFB5ED;">
Div content here</div>
This text has color #AFB5ED on black background.
This text has color #AFB5ED on white background.
This text has black color on #AFB5ED background.
This text has white color on #AFB5ED background.