HEX: #AA464C
RGB: (170,70,76)
#AA464C contains mainly red color. Web safe color of #AA464C is #993333 (or #933).
#AA464C color RGB value is (170,70,76).
RGB: (170,70,76) (67%,27%,30%)
R 170 of 255 = 67%
G 70 of 255 = 27%
B 76 of 255 = 30%
R + G + B ~ 41%. #AA464C is middle color (not dark and not light).
R + G + B =
170 + 70 + 76 = 316 (100%)
R 170 of 316 ~ 53.8%
G 70 of 316 ~ 22.15%
B 76 of 316 ~ 24.05%
#AA464C color CMYK value is (0,59,55,33).
CMYK: (0,59,55,33) C0M59Y55K33 (0%,59%,55%,33%) (0.00/0.59/0.55/0.33)
AA | 46 | 4C | |
---|---|---|---|
RGB | 170 | 70 | 76 |
HSL | 356° | 41.67% | 47.06% |
HSB/HSV | 356° | 58.82% | 66.67% |
CMYK | 0.00% | 58.82% | 55.29% |
33.33% |
HEX | AA | 46 | 4C |
Decimal | 170 | 70 | 76 |
Binary | 10101010 | 1000110 | 1001100 |
Octal | 252 | 106 | 114 |
Examples of css and html codes for elements with #AA464C color. Also use rgb(170,70,76) instead hex code.
.myTextColor { color: #AA464C; }
<p style="color:#AA464C">This sample text font color is #AA464C.</p>
This text font color is #AA464C.
.myBgColor { background-color: #AA464C; }
<div style="background-color:#AA464C">Inner text</div>
This div background color is #AA464C.
.myBorderColor { border: 1px solid #AA464C; }
<div style="border:3px solid #AA464C">Div</div>
This div border color is #AA464C.
.myOpacity80 { color: #AA464C; opacity: 0.8; }
<p style="color:#AA464C;opacity:0.8;">80%</p>
Text with #AA464C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AA464C;}
<p style="text-shadow: 3px 3px 1px #AA464C">Text here.</p>
This text has shadow with #AA464C color.
.textShadow {text-shadow: 3px 3px 1px #AA464C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AA464C, 5px 5px 20px red">Text here.</p>
This text has shadow with #AA464C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AA464C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AA464C, Direction=45, Strength=4)">Text</p>
This text has shadow with #AA464C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AA464C; -webkit-box-shadow: 1px 1px 3px 2px #AA464C; box-shadow: 1px 1px 3px 2px #AA464C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AA464C; -webkit-box-shadow: 1px 1px 3px 2px #AA464C; box-shadow:1px 1px 3px 2px #AA464C;">
Div content here</div>
This text has color #AA464C on black background.
This text has color #AA464C on white background.
This text has black color on #AA464C background.
This text has white color on #AA464C background.