HEX: #A49590
RGB: (164,149,144)
#A49590 contains red, green and blue colors in about the same proportion. Web safe color of #A49590 is #999999 (or #999).
#A49590 color RGB value is (164,149,144).
RGB: (164,149,144) (64%,58%,56%)
R 164 of 255 = 64%
G 149 of 255 = 58%
B 144 of 255 = 56%
R + G + B ~ 59%. #A49590 is middle color (not dark and not light).
R + G + B =
164 + 149 + 144 = 457 (100%)
R 164 of 457 ~ 35.89%
G 149 of 457 ~ 32.6%
B 144 of 457 ~ 31.51%
#A49590 color CMYK value is (0,9,12,36).
CMYK: (0,9,12,36) C0M9Y12K36 (0%,9%,12%,36%) (0.00/0.09/0.12/0.36)
A4 | 95 | 90 | |
---|---|---|---|
RGB | 164 | 149 | 144 |
HSL | 15° | 9.90% | 60.39% |
HSB/HSV | 15° | 12.20% | 64.31% |
CMYK | 0.00% | 9.15% | 12.20% |
35.69% |
HEX | A4 | 95 | 90 |
Decimal | 164 | 149 | 144 |
Binary | 10100100 | 10010101 | 10010000 |
Octal | 244 | 225 | 220 |
Examples of css and html codes for elements with #A49590 color. Also use rgb(164,149,144) instead hex code.
.myTextColor { color: #A49590; }
<p style="color:#A49590">This sample text font color is #A49590.</p>
This text font color is #A49590.
.myBgColor { background-color: #A49590; }
<div style="background-color:#A49590">Inner text</div>
This div background color is #A49590.
.myBorderColor { border: 1px solid #A49590; }
<div style="border:3px solid #A49590">Div</div>
This div border color is #A49590.
.myOpacity80 { color: #A49590; opacity: 0.8; }
<p style="color:#A49590;opacity:0.8;">80%</p>
Text with #A49590 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A49590;}
<p style="text-shadow: 3px 3px 1px #A49590">Text here.</p>
This text has shadow with #A49590 color.
.textShadow {text-shadow: 3px 3px 1px #A49590, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A49590, 5px 5px 20px red">Text here.</p>
This text has shadow with #A49590 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A49590, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A49590, Direction=45, Strength=4)">Text</p>
This text has shadow with #A49590 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A49590; -webkit-box-shadow: 1px 1px 3px 2px #A49590; box-shadow: 1px 1px 3px 2px #A49590; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A49590; -webkit-box-shadow: 1px 1px 3px 2px #A49590; box-shadow:1px 1px 3px 2px #A49590;">
Div content here</div>
This text has color #A49590 on black background.
This text has color #A49590 on white background.
This text has black color on #A49590 background.
This text has white color on #A49590 background.