HEX: #AF837A
RGB: (175,131,122)
#AF837A contains red, green and blue colors in about the same proportion. Web safe color of #AF837A is #999966 (or #996).
#AF837A color RGB value is (175,131,122).
RGB: (175,131,122) (69%,51%,48%)
R 175 of 255 = 69%
G 131 of 255 = 51%
B 122 of 255 = 48%
R + G + B ~ 56%. #AF837A is middle color (not dark and not light).
R + G + B =
175 + 131 + 122 = 428 (100%)
R 175 of 428 ~ 40.89%
G 131 of 428 ~ 30.61%
B 122 of 428 ~ 28.5%
#AF837A color CMYK value is (0,25,30,31).
CMYK: (0,25,30,31) C0M25Y30K31 (0%,25%,30%,31%) (0.00/0.25/0.30/0.31)
AF | 83 | 7A | |
---|---|---|---|
RGB | 175 | 131 | 122 |
HSL | 10° | 24.88% | 58.24% |
HSB/HSV | 10° | 30.29% | 68.63% |
CMYK | 0.00% | 25.14% | 30.29% |
31.37% |
HEX | AF | 83 | 7A |
Decimal | 175 | 131 | 122 |
Binary | 10101111 | 10000011 | 1111010 |
Octal | 257 | 203 | 172 |
Examples of css and html codes for elements with #AF837A color. Also use rgb(175,131,122) instead hex code.
.myTextColor { color: #AF837A; }
<p style="color:#AF837A">This sample text font color is #AF837A.</p>
This text font color is #AF837A.
.myBgColor { background-color: #AF837A; }
<div style="background-color:#AF837A">Inner text</div>
This div background color is #AF837A.
.myBorderColor { border: 1px solid #AF837A; }
<div style="border:3px solid #AF837A">Div</div>
This div border color is #AF837A.
.myOpacity80 { color: #AF837A; opacity: 0.8; }
<p style="color:#AF837A;opacity:0.8;">80%</p>
Text with #AF837A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AF837A;}
<p style="text-shadow: 3px 3px 1px #AF837A">Text here.</p>
This text has shadow with #AF837A color.
.textShadow {text-shadow: 3px 3px 1px #AF837A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AF837A, 5px 5px 20px red">Text here.</p>
This text has shadow with #AF837A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AF837A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AF837A, Direction=45, Strength=4)">Text</p>
This text has shadow with #AF837A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AF837A; -webkit-box-shadow: 1px 1px 3px 2px #AF837A; box-shadow: 1px 1px 3px 2px #AF837A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AF837A; -webkit-box-shadow: 1px 1px 3px 2px #AF837A; box-shadow:1px 1px 3px 2px #AF837A;">
Div content here</div>
This text has color #AF837A on black background.
This text has color #AF837A on white background.
This text has black color on #AF837A background.
This text has white color on #AF837A background.