HEX: #AF9976
RGB: (175,153,118)
#AF9976 contains red, green and blue colors in about the same proportion. Web safe color of #AF9976 is #999966 (or #996).
#AF9976 color RGB value is (175,153,118).
RGB: (175,153,118) (69%,60%,46%)
R 175 of 255 = 69%
G 153 of 255 = 60%
B 118 of 255 = 46%
R + G + B ~ 58%. #AF9976 is middle color (not dark and not light).
R + G + B =
175 + 153 + 118 = 446 (100%)
R 175 of 446 ~ 39.24%
G 153 of 446 ~ 34.3%
B 118 of 446 ~ 26.46%
#AF9976 color CMYK value is (0,13,33,31).
CMYK: (0,13,33,31) C0M13Y33K31 (0%,13%,33%,31%) (0.00/0.13/0.33/0.31)
AF | 99 | 76 | |
---|---|---|---|
RGB | 175 | 153 | 118 |
HSL | 37° | 26.27% | 57.45% |
HSB/HSV | 37° | 32.57% | 68.63% |
CMYK | 0.00% | 12.57% | 32.57% |
31.37% |
HEX | AF | 99 | 76 |
Decimal | 175 | 153 | 118 |
Binary | 10101111 | 10011001 | 1110110 |
Octal | 257 | 231 | 166 |
Examples of css and html codes for elements with #AF9976 color. Also use rgb(175,153,118) instead hex code.
.myTextColor { color: #AF9976; }
<p style="color:#AF9976">This sample text font color is #AF9976.</p>
This text font color is #AF9976.
.myBgColor { background-color: #AF9976; }
<div style="background-color:#AF9976">Inner text</div>
This div background color is #AF9976.
.myBorderColor { border: 1px solid #AF9976; }
<div style="border:3px solid #AF9976">Div</div>
This div border color is #AF9976.
.myOpacity80 { color: #AF9976; opacity: 0.8; }
<p style="color:#AF9976;opacity:0.8;">80%</p>
Text with #AF9976 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AF9976;}
<p style="text-shadow: 3px 3px 1px #AF9976">Text here.</p>
This text has shadow with #AF9976 color.
.textShadow {text-shadow: 3px 3px 1px #AF9976, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AF9976, 5px 5px 20px red">Text here.</p>
This text has shadow with #AF9976 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AF9976, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AF9976, Direction=45, Strength=4)">Text</p>
This text has shadow with #AF9976 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AF9976; -webkit-box-shadow: 1px 1px 3px 2px #AF9976; box-shadow: 1px 1px 3px 2px #AF9976; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AF9976; -webkit-box-shadow: 1px 1px 3px 2px #AF9976; box-shadow:1px 1px 3px 2px #AF9976;">
Div content here</div>
This text has color #AF9976 on black background.
This text has color #AF9976 on white background.
This text has black color on #AF9976 background.
This text has white color on #AF9976 background.