HEX: #AE7862
RGB: (174,120,98)
#AE7862 contains mainly red and green colors. Web safe color of #AE7862 is #996666 (or #966).
#AE7862 color RGB value is (174,120,98).
RGB: (174,120,98) (68%,47%,38%)
R 174 of 255 = 68%
G 120 of 255 = 47%
B 98 of 255 = 38%
R + G + B ~ 51%. #AE7862 is middle color (not dark and not light).
R + G + B =
174 + 120 + 98 = 392 (100%)
R 174 of 392 ~ 44.39%
G 120 of 392 ~ 30.61%
B 98 of 392 ~ 25%
#AE7862 color CMYK value is (0,31,44,32).
CMYK: (0,31,44,32) C0M31Y44K32 (0%,31%,44%,32%) (0.00/0.31/0.44/0.32)
AE | 78 | 62 | |
---|---|---|---|
RGB | 174 | 120 | 98 |
HSL | 17° | 31.93% | 53.33% |
HSB/HSV | 17° | 43.68% | 68.24% |
CMYK | 0.00% | 31.03% | 43.68% |
31.76% |
HEX | AE | 78 | 62 |
Decimal | 174 | 120 | 98 |
Binary | 10101110 | 1111000 | 1100010 |
Octal | 256 | 170 | 142 |
Examples of css and html codes for elements with #AE7862 color. Also use rgb(174,120,98) instead hex code.
.myTextColor { color: #AE7862; }
<p style="color:#AE7862">This sample text font color is #AE7862.</p>
This text font color is #AE7862.
.myBgColor { background-color: #AE7862; }
<div style="background-color:#AE7862">Inner text</div>
This div background color is #AE7862.
.myBorderColor { border: 1px solid #AE7862; }
<div style="border:3px solid #AE7862">Div</div>
This div border color is #AE7862.
.myOpacity80 { color: #AE7862; opacity: 0.8; }
<p style="color:#AE7862;opacity:0.8;">80%</p>
Text with #AE7862 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE7862;}
<p style="text-shadow: 3px 3px 1px #AE7862">Text here.</p>
This text has shadow with #AE7862 color.
.textShadow {text-shadow: 3px 3px 1px #AE7862, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE7862, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE7862 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE7862, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE7862, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE7862 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE7862; -webkit-box-shadow: 1px 1px 3px 2px #AE7862; box-shadow: 1px 1px 3px 2px #AE7862; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE7862; -webkit-box-shadow: 1px 1px 3px 2px #AE7862; box-shadow:1px 1px 3px 2px #AE7862;">
Div content here</div>
This text has color #AE7862 on black background.
This text has color #AE7862 on white background.
This text has black color on #AE7862 background.
This text has white color on #AE7862 background.