HEX: #AFB5CE
RGB: (175,181,206)
#AFB5CE contains red, green and blue colors in about the same proportion. Web safe color of #AFB5CE is #99CCCC (or #9CC).
#AFB5CE color RGB value is (175,181,206).
RGB: (175,181,206) (69%,71%,81%)
R 175 of 255 = 69%
G 181 of 255 = 71%
B 206 of 255 = 81%
R + G + B ~ 74%. #AFB5CE is quite light color.
R + G + B =
175 + 181 + 206 = 562 (100%)
R 175 of 562 ~ 31.14%
G 181 of 562 ~ 32.21%
B 206 of 562 ~ 36.65%
#AFB5CE color CMYK value is (15,12,0,19).
CMYK: (15,12,0,19) C15M12Y0K19 (15%,12%,0%,19%) (0.15/0.12/0.00/0.19)
AF | B5 | CE | |
---|---|---|---|
RGB | 175 | 181 | 206 |
HSL | 228° | 24.03% | 74.71% |
HSB/HSV | 228° | 15.05% | 80.78% |
CMYK | 15.05% | 12.14% | 0.00% |
19.22% |
HEX | AF | B5 | CE |
Decimal | 175 | 181 | 206 |
Binary | 10101111 | 10110101 | 11001110 |
Octal | 257 | 265 | 316 |
Examples of css and html codes for elements with #AFB5CE color. Also use rgb(175,181,206) instead hex code.
.myTextColor { color: #AFB5CE; }
<p style="color:#AFB5CE">This sample text font color is #AFB5CE.</p>
This text font color is #AFB5CE.
.myBgColor { background-color: #AFB5CE; }
<div style="background-color:#AFB5CE">Inner text</div>
This div background color is #AFB5CE.
.myBorderColor { border: 1px solid #AFB5CE; }
<div style="border:3px solid #AFB5CE">Div</div>
This div border color is #AFB5CE.
.myOpacity80 { color: #AFB5CE; opacity: 0.8; }
<p style="color:#AFB5CE;opacity:0.8;">80%</p>
Text with #AFB5CE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AFB5CE;}
<p style="text-shadow: 3px 3px 1px #AFB5CE">Text here.</p>
This text has shadow with #AFB5CE color.
.textShadow {text-shadow: 3px 3px 1px #AFB5CE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AFB5CE, 5px 5px 20px red">Text here.</p>
This text has shadow with #AFB5CE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AFB5CE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AFB5CE, Direction=45, Strength=4)">Text</p>
This text has shadow with #AFB5CE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AFB5CE; -webkit-box-shadow: 1px 1px 3px 2px #AFB5CE; box-shadow: 1px 1px 3px 2px #AFB5CE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AFB5CE; -webkit-box-shadow: 1px 1px 3px 2px #AFB5CE; box-shadow:1px 1px 3px 2px #AFB5CE;">
Div content here</div>
This text has color #AFB5CE on black background.
This text has color #AFB5CE on white background.
This text has black color on #AFB5CE background.
This text has white color on #AFB5CE background.