HEX: #AE6A60
RGB: (174,106,96)
#AE6A60 contains mainly red color. Web safe color of #AE6A60 is #996666 (or #966).
#AE6A60 color RGB value is (174,106,96).
RGB: (174,106,96) (68%,42%,38%)
R 174 of 255 = 68%
G 106 of 255 = 42%
B 96 of 255 = 38%
R + G + B ~ 49%. #AE6A60 is middle color (not dark and not light).
R + G + B =
174 + 106 + 96 = 376 (100%)
R 174 of 376 ~ 46.28%
G 106 of 376 ~ 28.19%
B 96 of 376 ~ 25.53%
#AE6A60 color CMYK value is (0,39,45,32).
CMYK: (0,39,45,32) C0M39Y45K32 (0%,39%,45%,32%) (0.00/0.39/0.45/0.32)
AE | 6A | 60 | |
---|---|---|---|
RGB | 174 | 106 | 96 |
HSL | 8° | 32.50% | 52.94% |
HSB/HSV | 8° | 44.83% | 68.24% |
CMYK | 0.00% | 39.08% | 44.83% |
31.76% |
HEX | AE | 6A | 60 |
Decimal | 174 | 106 | 96 |
Binary | 10101110 | 1101010 | 1100000 |
Octal | 256 | 152 | 140 |
Examples of css and html codes for elements with #AE6A60 color. Also use rgb(174,106,96) instead hex code.
.myTextColor { color: #AE6A60; }
<p style="color:#AE6A60">This sample text font color is #AE6A60.</p>
This text font color is #AE6A60.
.myBgColor { background-color: #AE6A60; }
<div style="background-color:#AE6A60">Inner text</div>
This div background color is #AE6A60.
.myBorderColor { border: 1px solid #AE6A60; }
<div style="border:3px solid #AE6A60">Div</div>
This div border color is #AE6A60.
.myOpacity80 { color: #AE6A60; opacity: 0.8; }
<p style="color:#AE6A60;opacity:0.8;">80%</p>
Text with #AE6A60 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AE6A60;}
<p style="text-shadow: 3px 3px 1px #AE6A60">Text here.</p>
This text has shadow with #AE6A60 color.
.textShadow {text-shadow: 3px 3px 1px #AE6A60, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AE6A60, 5px 5px 20px red">Text here.</p>
This text has shadow with #AE6A60 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AE6A60, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AE6A60, Direction=45, Strength=4)">Text</p>
This text has shadow with #AE6A60 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AE6A60; -webkit-box-shadow: 1px 1px 3px 2px #AE6A60; box-shadow: 1px 1px 3px 2px #AE6A60; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AE6A60; -webkit-box-shadow: 1px 1px 3px 2px #AE6A60; box-shadow:1px 1px 3px 2px #AE6A60;">
Div content here</div>
This text has color #AE6A60 on black background.
This text has color #AE6A60 on white background.
This text has black color on #AE6A60 background.
This text has white color on #AE6A60 background.