HEX: #AE5D12
RGB: (174,93,18)
#AE5D12 contains mainly red color. Web safe color of #AE5D12 is #996600 (or #960).
#AE5D12 color RGB value is (174,93,18).
RGB: (174,93,18) (68%,36%,7%)
R 174 of 255 = 68%
G 93 of 255 = 36%
B 18 of 255 = 7%
R + G + B ~ 37%. #AE5D12 is quite dark color.
R + G + B =
174 + 93 + 18 = 285 (100%)
R 174 of 285 ~ 61.05%
G 93 of 285 ~ 32.63%
B 18 of 285 ~ 6.32%
#AE5D12 color CMYK value is (0,47,90,32).
CMYK: (0,47,90,32) C0M47Y90K32 (0%,47%,90%,32%) (0.00/0.47/0.90/0.32)
AE | 5D | 12 | |
---|---|---|---|
RGB | 174 | 93 | 18 |
HSL | 29° | 81.25% | 37.65% |
HSB/HSV | 29° | 89.66% | 68.24% |
CMYK | 0.00% | 46.55% | 89.66% |
31.76% |
HEX | AE | 5D | 12 |
Decimal | 174 | 93 | 18 |
Binary | 10101110 | 1011101 | 10010 |
Octal | 256 | 135 | 22 |
Examples of css and html codes for elements with #AE5D12 color. Also use rgb(174,93,18) instead hex code.
.myTextColor { color: #AE5D12; }
<p style="color:#AE5D12">This sample text font color is #AE5D12.</p>
This text font color is #AE5D12.
.myBgColor { background-color: #AE5D12; }
<div style="background-color:#AE5D12">Inner text</div>
This div background color is #AE5D12.
.myBorderColor { border: 1px solid #AE5D12; }
<div style="border:3px solid #AE5D12">Div</div>
This div border color is #AE5D12.
.myOpacity80 { color: #AE5D12; opacity: 0.8; }
<p style="color:#AE5D12;opacity:0.8;">80%</p>
Text with #AE5D12 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE5D12;}
<p style="text-shadow: 3px 3px 1px #AE5D12">Text here.</p>
This text has shadow with #AE5D12 color.
.textShadow {text-shadow: 3px 3px 1px #AE5D12, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE5D12, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE5D12 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE5D12, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE5D12, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE5D12 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE5D12; -webkit-box-shadow: 1px 1px 3px 2px #AE5D12; box-shadow: 1px 1px 3px 2px #AE5D12; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE5D12; -webkit-box-shadow: 1px 1px 3px 2px #AE5D12; box-shadow:1px 1px 3px 2px #AE5D12;">
Div content here</div>
This text has color #AE5D12 on black background.
This text has color #AE5D12 on white background.
This text has black color on #AE5D12 background.
This text has white color on #AE5D12 background.