HEX: #A07076
RGB: (160,112,118)
#A07076 contains red, green and blue colors in about the same proportion. Web safe color of #A07076 is #996666 (or #966).
#A07076 color RGB value is (160,112,118).
RGB: (160,112,118) (63%,44%,46%)
R 160 of 255 = 63%
G 112 of 255 = 44%
B 118 of 255 = 46%
R + G + B ~ 51%. #A07076 is middle color (not dark and not light).
R + G + B =
160 + 112 + 118 = 390 (100%)
R 160 of 390 ~ 41.03%
G 112 of 390 ~ 28.72%
B 118 of 390 ~ 30.26%
#A07076 color CMYK value is (0,30,26,37).
CMYK: (0,30,26,37) C0M30Y26K37 (0%,30%,26%,37%) (0.00/0.30/0.26/0.37)
A0 | 70 | 76 | |
---|---|---|---|
RGB | 160 | 112 | 118 |
HSL | 353° | 20.17% | 53.33% |
HSB/HSV | 353° | 30.00% | 62.75% |
CMYK | 0.00% | 30.00% | 26.25% |
37.25% |
HEX | A0 | 70 | 76 |
Decimal | 160 | 112 | 118 |
Binary | 10100000 | 1110000 | 1110110 |
Octal | 240 | 160 | 166 |
Examples of css and html codes for elements with #A07076 color. Also use rgb(160,112,118) instead hex code.
.myTextColor { color: #A07076; }
<p style="color:#A07076">This sample text font color is #A07076.</p>
This text font color is #A07076.
.myBgColor { background-color: #A07076; }
<div style="background-color:#A07076">Inner text</div>
This div background color is #A07076.
.myBorderColor { border: 1px solid #A07076; }
<div style="border:3px solid #A07076">Div</div>
This div border color is #A07076.
.myOpacity80 { color: #A07076; opacity: 0.8; }
<p style="color:#A07076;opacity:0.8;">80%</p>
Text with #A07076 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A07076;}
<p style="text-shadow: 3px 3px 1px #A07076">Text here.</p>
This text has shadow with #A07076 color.
.textShadow {text-shadow: 3px 3px 1px #A07076, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A07076, 5px 5px 20px red">Text here.</p>
This text has shadow with #A07076 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A07076, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A07076, Direction=45, Strength=4)">Text</p>
This text has shadow with #A07076 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A07076; -webkit-box-shadow: 1px 1px 3px 2px #A07076; box-shadow: 1px 1px 3px 2px #A07076; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A07076; -webkit-box-shadow: 1px 1px 3px 2px #A07076; box-shadow:1px 1px 3px 2px #A07076;">
Div content here</div>
This text has color #A07076 on black background.
This text has color #A07076 on white background.
This text has black color on #A07076 background.
This text has white color on #A07076 background.