HEX: #AE7265
RGB: (174,114,101)
#AE7265 contains mainly red color. Web safe color of #AE7265 is #996666 (or #966).
#AE7265 color RGB value is (174,114,101).
RGB: (174,114,101) (68%,45%,40%)
R 174 of 255 = 68%
G 114 of 255 = 45%
B 101 of 255 = 40%
R + G + B ~ 51%. #AE7265 is middle color (not dark and not light).
R + G + B =
174 + 114 + 101 = 389 (100%)
R 174 of 389 ~ 44.73%
G 114 of 389 ~ 29.31%
B 101 of 389 ~ 25.96%
#AE7265 color CMYK value is (0,34,42,32).
CMYK: (0,34,42,32) C0M34Y42K32 (0%,34%,42%,32%) (0.00/0.34/0.42/0.32)
AE | 72 | 65 | |
---|---|---|---|
RGB | 174 | 114 | 101 |
HSL | 11° | 31.06% | 53.92% |
HSB/HSV | 11° | 41.95% | 68.24% |
CMYK | 0.00% | 34.48% | 41.95% |
31.76% |
HEX | AE | 72 | 65 |
Decimal | 174 | 114 | 101 |
Binary | 10101110 | 1110010 | 1100101 |
Octal | 256 | 162 | 145 |
Examples of css and html codes for elements with #AE7265 color. Also use rgb(174,114,101) instead hex code.
.myTextColor { color: #AE7265; }
<p style="color:#AE7265">This sample text font color is #AE7265.</p>
This text font color is #AE7265.
.myBgColor { background-color: #AE7265; }
<div style="background-color:#AE7265">Inner text</div>
This div background color is #AE7265.
.myBorderColor { border: 1px solid #AE7265; }
<div style="border:3px solid #AE7265">Div</div>
This div border color is #AE7265.
.myOpacity80 { color: #AE7265; opacity: 0.8; }
<p style="color:#AE7265;opacity:0.8;">80%</p>
Text with #AE7265 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE7265;}
<p style="text-shadow: 3px 3px 1px #AE7265">Text here.</p>
This text has shadow with #AE7265 color.
.textShadow {text-shadow: 3px 3px 1px #AE7265, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE7265, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE7265 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE7265, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE7265, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE7265 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE7265; -webkit-box-shadow: 1px 1px 3px 2px #AE7265; box-shadow: 1px 1px 3px 2px #AE7265; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE7265; -webkit-box-shadow: 1px 1px 3px 2px #AE7265; box-shadow:1px 1px 3px 2px #AE7265;">
Div content here</div>
This text has color #AE7265 on black background.
This text has color #AE7265 on white background.
This text has black color on #AE7265 background.
This text has white color on #AE7265 background.