HEX: #AE6F74
RGB: (174,111,116)
#AE6F74 contains mainly red and blue colors. Web safe color of #AE6F74 is #996666 (or #966).
#AE6F74 color RGB value is (174,111,116).
RGB: (174,111,116) (68%,44%,45%)
R 174 of 255 = 68%
G 111 of 255 = 44%
B 116 of 255 = 45%
R + G + B ~ 52%. #AE6F74 is middle color (not dark and not light).
R + G + B =
174 + 111 + 116 = 401 (100%)
R 174 of 401 ~ 43.39%
G 111 of 401 ~ 27.68%
B 116 of 401 ~ 28.93%
#AE6F74 color CMYK value is (0,36,33,32).
CMYK: (0,36,33,32) C0M36Y33K32 (0%,36%,33%,32%) (0.00/0.36/0.33/0.32)
AE | 6F | 74 | |
---|---|---|---|
RGB | 174 | 111 | 116 |
HSL | 355° | 28.00% | 55.88% |
HSB/HSV | 355° | 36.21% | 68.24% |
CMYK | 0.00% | 36.21% | 33.33% |
31.76% |
HEX | AE | 6F | 74 |
Decimal | 174 | 111 | 116 |
Binary | 10101110 | 1101111 | 1110100 |
Octal | 256 | 157 | 164 |
Examples of css and html codes for elements with #AE6F74 color. Also use rgb(174,111,116) instead hex code.
.myTextColor { color: #AE6F74; }
<p style="color:#AE6F74">This sample text font color is #AE6F74.</p>
This text font color is #AE6F74.
.myBgColor { background-color: #AE6F74; }
<div style="background-color:#AE6F74">Inner text</div>
This div background color is #AE6F74.
.myBorderColor { border: 1px solid #AE6F74; }
<div style="border:3px solid #AE6F74">Div</div>
This div border color is #AE6F74.
.myOpacity80 { color: #AE6F74; opacity: 0.8; }
<p style="color:#AE6F74;opacity:0.8;">80%</p>
Text with #AE6F74 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE6F74;}
<p style="text-shadow: 3px 3px 1px #AE6F74">Text here.</p>
This text has shadow with #AE6F74 color.
.textShadow {text-shadow: 3px 3px 1px #AE6F74, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE6F74, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE6F74 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE6F74, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE6F74, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE6F74 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE6F74; -webkit-box-shadow: 1px 1px 3px 2px #AE6F74; box-shadow: 1px 1px 3px 2px #AE6F74; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE6F74; -webkit-box-shadow: 1px 1px 3px 2px #AE6F74; box-shadow:1px 1px 3px 2px #AE6F74;">
Div content here</div>
This text has color #AE6F74 on black background.
This text has color #AE6F74 on white background.
This text has black color on #AE6F74 background.
This text has white color on #AE6F74 background.