HEX: #AF827F
RGB: (175,130,127)
#AF827F contains red, green and blue colors in about the same proportion. Web safe color of #AF827F is #999966 (or #996).
#AF827F color RGB value is (175,130,127).
RGB: (175,130,127) (69%,51%,50%)
R 175 of 255 = 69%
G 130 of 255 = 51%
B 127 of 255 = 50%
R + G + B ~ 57%. #AF827F is middle color (not dark and not light).
R + G + B =
175 + 130 + 127 = 432 (100%)
R 175 of 432 ~ 40.51%
G 130 of 432 ~ 30.09%
B 127 of 432 ~ 29.4%
#AF827F color CMYK value is (0,26,27,31).
CMYK: (0,26,27,31) C0M26Y27K31 (0%,26%,27%,31%) (0.00/0.26/0.27/0.31)
AF | 82 | 7F | |
---|---|---|---|
RGB | 175 | 130 | 127 |
HSL | 4° | 23.08% | 59.22% |
HSB/HSV | 4° | 27.43% | 68.63% |
CMYK | 0.00% | 25.71% | 27.43% |
31.37% |
HEX | AF | 82 | 7F |
Decimal | 175 | 130 | 127 |
Binary | 10101111 | 10000010 | 1111111 |
Octal | 257 | 202 | 177 |
Examples of css and html codes for elements with #AF827F color. Also use rgb(175,130,127) instead hex code.
.myTextColor { color: #AF827F; }
<p style="color:#AF827F">This sample text font color is #AF827F.</p>
This text font color is #AF827F.
.myBgColor { background-color: #AF827F; }
<div style="background-color:#AF827F">Inner text</div>
This div background color is #AF827F.
.myBorderColor { border: 1px solid #AF827F; }
<div style="border:3px solid #AF827F">Div</div>
This div border color is #AF827F.
.myOpacity80 { color: #AF827F; opacity: 0.8; }
<p style="color:#AF827F;opacity:0.8;">80%</p>
Text with #AF827F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AF827F;}
<p style="text-shadow: 3px 3px 1px #AF827F">Text here.</p>
This text has shadow with #AF827F color.
.textShadow {text-shadow: 3px 3px 1px #AF827F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AF827F, 5px 5px 20px red">Text here.</p>
This text has shadow with #AF827F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AF827F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AF827F, Direction=45, Strength=4)">Text</p>
This text has shadow with #AF827F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AF827F; -webkit-box-shadow: 1px 1px 3px 2px #AF827F; box-shadow: 1px 1px 3px 2px #AF827F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AF827F; -webkit-box-shadow: 1px 1px 3px 2px #AF827F; box-shadow:1px 1px 3px 2px #AF827F;">
Div content here</div>
This text has color #AF827F on black background.
This text has color #AF827F on white background.
This text has black color on #AF827F background.
This text has white color on #AF827F background.