HEX: #AFB1CC
RGB: (175,177,204)
#AFB1CC contains red, green and blue colors in about the same proportion. Web safe color of #AFB1CC is #9999CC (or #99C).
#AFB1CC color RGB value is (175,177,204).
RGB: (175,177,204) (69%,69%,80%)
R 175 of 255 = 69%
G 177 of 255 = 69%
B 204 of 255 = 80%
R + G + B ~ 73%. #AFB1CC is quite light color.
R + G + B =
175 + 177 + 204 = 556 (100%)
R 175 of 556 ~ 31.47%
G 177 of 556 ~ 31.83%
B 204 of 556 ~ 36.69%
#AFB1CC color CMYK value is (14,13,0,20).
CMYK: (14,13,0,20) C14M13Y0K20 (14%,13%,0%,20%) (0.14/0.13/0.00/0.20)
AF | B1 | CC | |
---|---|---|---|
RGB | 175 | 177 | 204 |
HSL | 236° | 22.14% | 74.31% |
HSB/HSV | 236° | 14.22% | 80.00% |
CMYK | 14.22% | 13.24% | 0.00% |
20.00% |
HEX | AF | B1 | CC |
Decimal | 175 | 177 | 204 |
Binary | 10101111 | 10110001 | 11001100 |
Octal | 257 | 261 | 314 |
Examples of css and html codes for elements with #AFB1CC color. Also use rgb(175,177,204) instead hex code.
.myTextColor { color: #AFB1CC; }
<p style="color:#AFB1CC">This sample text font color is #AFB1CC.</p>
This text font color is #AFB1CC.
.myBgColor { background-color: #AFB1CC; }
<div style="background-color:#AFB1CC">Inner text</div>
This div background color is #AFB1CC.
.myBorderColor { border: 1px solid #AFB1CC; }
<div style="border:3px solid #AFB1CC">Div</div>
This div border color is #AFB1CC.
.myOpacity80 { color: #AFB1CC; opacity: 0.8; }
<p style="color:#AFB1CC;opacity:0.8;">80%</p>
Text with #AFB1CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AFB1CC;}
<p style="text-shadow: 3px 3px 1px #AFB1CC">Text here.</p>
This text has shadow with #AFB1CC color.
.textShadow {text-shadow: 3px 3px 1px #AFB1CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AFB1CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #AFB1CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AFB1CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AFB1CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #AFB1CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AFB1CC; -webkit-box-shadow: 1px 1px 3px 2px #AFB1CC; box-shadow: 1px 1px 3px 2px #AFB1CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AFB1CC; -webkit-box-shadow: 1px 1px 3px 2px #AFB1CC; box-shadow:1px 1px 3px 2px #AFB1CC;">
Div content here</div>
This text has color #AFB1CC on black background.
This text has color #AFB1CC on white background.
This text has black color on #AFB1CC background.
This text has white color on #AFB1CC background.