HEX: #AFA6BE
RGB: (175,166,190)
#AFA6BE contains red, green and blue colors in about the same proportion. Web safe color of #AFA6BE is #9999CC (or #99C).
#AFA6BE color RGB value is (175,166,190).
RGB: (175,166,190) (69%,65%,75%)
R 175 of 255 = 69%
G 166 of 255 = 65%
B 190 of 255 = 75%
R + G + B ~ 70%. #AFA6BE is quite light color.
R + G + B =
175 + 166 + 190 = 531 (100%)
R 175 of 531 ~ 32.96%
G 166 of 531 ~ 31.26%
B 190 of 531 ~ 35.78%
#AFA6BE color CMYK value is (8,13,0,25).
CMYK: (8,13,0,25) C8M13Y0K25 (8%,13%,0%,25%) (0.08/0.13/0.00/0.25)
AF | A6 | BE | |
---|---|---|---|
RGB | 175 | 166 | 190 |
HSL | 263° | 15.58% | 69.80% |
HSB/HSV | 263° | 12.63% | 74.51% |
CMYK | 7.89% | 12.63% | 0.00% |
25.49% |
HEX | AF | A6 | BE |
Decimal | 175 | 166 | 190 |
Binary | 10101111 | 10100110 | 10111110 |
Octal | 257 | 246 | 276 |
Examples of css and html codes for elements with #AFA6BE color. Also use rgb(175,166,190) instead hex code.
.myTextColor { color: #AFA6BE; }
<p style="color:#AFA6BE">This sample text font color is #AFA6BE.</p>
This text font color is #AFA6BE.
.myBgColor { background-color: #AFA6BE; }
<div style="background-color:#AFA6BE">Inner text</div>
This div background color is #AFA6BE.
.myBorderColor { border: 1px solid #AFA6BE; }
<div style="border:3px solid #AFA6BE">Div</div>
This div border color is #AFA6BE.
.myOpacity80 { color: #AFA6BE; opacity: 0.8; }
<p style="color:#AFA6BE;opacity:0.8;">80%</p>
Text with #AFA6BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AFA6BE;}
<p style="text-shadow: 3px 3px 1px #AFA6BE">Text here.</p>
This text has shadow with #AFA6BE color.
.textShadow {text-shadow: 3px 3px 1px #AFA6BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AFA6BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #AFA6BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AFA6BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AFA6BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #AFA6BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AFA6BE; -webkit-box-shadow: 1px 1px 3px 2px #AFA6BE; box-shadow: 1px 1px 3px 2px #AFA6BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AFA6BE; -webkit-box-shadow: 1px 1px 3px 2px #AFA6BE; box-shadow:1px 1px 3px 2px #AFA6BE;">
Div content here</div>
This text has color #AFA6BE on black background.
This text has color #AFA6BE on white background.
This text has black color on #AFA6BE background.
This text has white color on #AFA6BE background.