HEX: #A0488D
RGB: (160,72,141)
#A0488D contains mainly red and blue colors. Web safe color of #A0488D is #993399 (or #939).
#A0488D color RGB value is (160,72,141).
RGB: (160,72,141) (63%,28%,55%)
R 160 of 255 = 63%
G 72 of 255 = 28%
B 141 of 255 = 55%
R + G + B ~ 49%. #A0488D is middle color (not dark and not light).
R + G + B =
160 + 72 + 141 = 373 (100%)
R 160 of 373 ~ 42.9%
G 72 of 373 ~ 19.3%
B 141 of 373 ~ 37.8%
#A0488D color CMYK value is (0,55,12,37).
CMYK: (0,55,12,37) C0M55Y12K37 (0%,55%,12%,37%) (0.00/0.55/0.12/0.37)
A0 | 48 | 8D | |
---|---|---|---|
RGB | 160 | 72 | 141 |
HSL | 313° | 37.93% | 45.49% |
HSB/HSV | 313° | 55.00% | 62.75% |
CMYK | 0.00% | 55.00% | 11.88% |
37.25% |
HEX | A0 | 48 | 8D |
Decimal | 160 | 72 | 141 |
Binary | 10100000 | 1001000 | 10001101 |
Octal | 240 | 110 | 215 |
Examples of css and html codes for elements with #A0488D color. Also use rgb(160,72,141) instead hex code.
.myTextColor { color: #A0488D; }
<p style="color:#A0488D">This sample text font color is #A0488D.</p>
This text font color is #A0488D.
.myBgColor { background-color: #A0488D; }
<div style="background-color:#A0488D">Inner text</div>
This div background color is #A0488D.
.myBorderColor { border: 1px solid #A0488D; }
<div style="border:3px solid #A0488D">Div</div>
This div border color is #A0488D.
.myOpacity80 { color: #A0488D; opacity: 0.8; }
<p style="color:#A0488D;opacity:0.8;">80%</p>
Text with #A0488D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A0488D;}
<p style="text-shadow: 3px 3px 1px #A0488D">Text here.</p>
This text has shadow with #A0488D color.
.textShadow {text-shadow: 3px 3px 1px #A0488D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A0488D, 5px 5px 20px red">Text here.</p>
This text has shadow with #A0488D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A0488D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A0488D, Direction=45, Strength=4)">Text</p>
This text has shadow with #A0488D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A0488D; -webkit-box-shadow: 1px 1px 3px 2px #A0488D; box-shadow: 1px 1px 3px 2px #A0488D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A0488D; -webkit-box-shadow: 1px 1px 3px 2px #A0488D; box-shadow:1px 1px 3px 2px #A0488D;">
Div content here</div>
This text has color #A0488D on black background.
This text has color #A0488D on white background.
This text has black color on #A0488D background.
This text has white color on #A0488D background.