HEX: #A46888
RGB: (164,104,136)
#A46888 contains mainly red and blue colors. Web safe color of #A46888 is #996699 (or #969).
#A46888 color RGB value is (164,104,136).
RGB: (164,104,136) (64%,41%,53%)
R 164 of 255 = 64%
G 104 of 255 = 41%
B 136 of 255 = 53%
R + G + B ~ 53%. #A46888 is middle color (not dark and not light).
R + G + B =
164 + 104 + 136 = 404 (100%)
R 164 of 404 ~ 40.59%
G 104 of 404 ~ 25.74%
B 136 of 404 ~ 33.66%
#A46888 color CMYK value is (0,37,17,36).
CMYK: (0,37,17,36) C0M37Y17K36 (0%,37%,17%,36%) (0.00/0.37/0.17/0.36)
A4 | 68 | 88 | |
---|---|---|---|
RGB | 164 | 104 | 136 |
HSL | 328° | 24.79% | 52.55% |
HSB/HSV | 328° | 36.59% | 64.31% |
CMYK | 0.00% | 36.59% | 17.07% |
35.69% |
HEX | A4 | 68 | 88 |
Decimal | 164 | 104 | 136 |
Binary | 10100100 | 1101000 | 10001000 |
Octal | 244 | 150 | 210 |
Examples of css and html codes for elements with #A46888 color. Also use rgb(164,104,136) instead hex code.
.myTextColor { color: #A46888; }
<p style="color:#A46888">This sample text font color is #A46888.</p>
This text font color is #A46888.
.myBgColor { background-color: #A46888; }
<div style="background-color:#A46888">Inner text</div>
This div background color is #A46888.
.myBorderColor { border: 1px solid #A46888; }
<div style="border:3px solid #A46888">Div</div>
This div border color is #A46888.
.myOpacity80 { color: #A46888; opacity: 0.8; }
<p style="color:#A46888;opacity:0.8;">80%</p>
Text with #A46888 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A46888;}
<p style="text-shadow: 3px 3px 1px #A46888">Text here.</p>
This text has shadow with #A46888 color.
.textShadow {text-shadow: 3px 3px 1px #A46888, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A46888, 5px 5px 20px red">Text here.</p>
This text has shadow with #A46888 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A46888, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A46888, Direction=45, Strength=4)">Text</p>
This text has shadow with #A46888 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A46888; -webkit-box-shadow: 1px 1px 3px 2px #A46888; box-shadow: 1px 1px 3px 2px #A46888; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A46888; -webkit-box-shadow: 1px 1px 3px 2px #A46888; box-shadow:1px 1px 3px 2px #A46888;">
Div content here</div>
This text has color #A46888 on black background.
This text has color #A46888 on white background.
This text has black color on #A46888 background.
This text has white color on #A46888 background.