HEX: #A47498
RGB: (164,116,152)
#A47498 contains red, green and blue colors in about the same proportion. Web safe color of #A47498 is #996699 (or #969).
#A47498 color RGB value is (164,116,152).
RGB: (164,116,152) (64%,45%,60%)
R 164 of 255 = 64%
G 116 of 255 = 45%
B 152 of 255 = 60%
R + G + B ~ 56%. #A47498 is middle color (not dark and not light).
R + G + B =
164 + 116 + 152 = 432 (100%)
R 164 of 432 ~ 37.96%
G 116 of 432 ~ 26.85%
B 152 of 432 ~ 35.19%
#A47498 color CMYK value is (0,29,7,36).
CMYK: (0,29,7,36) C0M29Y7K36 (0%,29%,7%,36%) (0.00/0.29/0.07/0.36)
A4 | 74 | 98 | |
---|---|---|---|
RGB | 164 | 116 | 152 |
HSL | 315° | 20.87% | 54.90% |
HSB/HSV | 315° | 29.27% | 64.31% |
CMYK | 0.00% | 29.27% | 7.32% |
35.69% |
HEX | A4 | 74 | 98 |
Decimal | 164 | 116 | 152 |
Binary | 10100100 | 1110100 | 10011000 |
Octal | 244 | 164 | 230 |
Examples of css and html codes for elements with #A47498 color. Also use rgb(164,116,152) instead hex code.
.myTextColor { color: #A47498; }
<p style="color:#A47498">This sample text font color is #A47498.</p>
This text font color is #A47498.
.myBgColor { background-color: #A47498; }
<div style="background-color:#A47498">Inner text</div>
This div background color is #A47498.
.myBorderColor { border: 1px solid #A47498; }
<div style="border:3px solid #A47498">Div</div>
This div border color is #A47498.
.myOpacity80 { color: #A47498; opacity: 0.8; }
<p style="color:#A47498;opacity:0.8;">80%</p>
Text with #A47498 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A47498;}
<p style="text-shadow: 3px 3px 1px #A47498">Text here.</p>
This text has shadow with #A47498 color.
.textShadow {text-shadow: 3px 3px 1px #A47498, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A47498, 5px 5px 20px red">Text here.</p>
This text has shadow with #A47498 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A47498, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A47498, Direction=45, Strength=4)">Text</p>
This text has shadow with #A47498 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A47498; -webkit-box-shadow: 1px 1px 3px 2px #A47498; box-shadow: 1px 1px 3px 2px #A47498; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A47498; -webkit-box-shadow: 1px 1px 3px 2px #A47498; box-shadow:1px 1px 3px 2px #A47498;">
Div content here</div>
This text has color #A47498 on black background.
This text has color #A47498 on white background.
This text has black color on #A47498 background.
This text has white color on #A47498 background.