HEX: #A370AD
RGB: (163,112,173)
#A370AD contains mainly red and blue colors. Web safe color of #A370AD is #996699 (or #969).
#A370AD color RGB value is (163,112,173).
RGB: (163,112,173) (64%,44%,68%)
R 163 of 255 = 64%
G 112 of 255 = 44%
B 173 of 255 = 68%
R + G + B ~ 59%. #A370AD is middle color (not dark and not light).
R + G + B =
163 + 112 + 173 = 448 (100%)
R 163 of 448 ~ 36.38%
G 112 of 448 ~ 25%
B 173 of 448 ~ 38.62%
#A370AD color CMYK value is (6,35,0,32).
CMYK: (6,35,0,32) C6M35Y0K32 (6%,35%,0%,32%) (0.06/0.35/0.00/0.32)
A3 | 70 | AD | |
---|---|---|---|
RGB | 163 | 112 | 173 |
HSL | 290° | 27.11% | 55.88% |
HSB/HSV | 290° | 35.26% | 67.84% |
CMYK | 5.78% | 35.26% | 0.00% |
32.16% |
HEX | A3 | 70 | AD |
Decimal | 163 | 112 | 173 |
Binary | 10100011 | 1110000 | 10101101 |
Octal | 243 | 160 | 255 |
Examples of css and html codes for elements with #A370AD color. Also use rgb(163,112,173) instead hex code.
.myTextColor { color: #A370AD; }
<p style="color:#A370AD">This sample text font color is #A370AD.</p>
This text font color is #A370AD.
.myBgColor { background-color: #A370AD; }
<div style="background-color:#A370AD">Inner text</div>
This div background color is #A370AD.
.myBorderColor { border: 1px solid #A370AD; }
<div style="border:3px solid #A370AD">Div</div>
This div border color is #A370AD.
.myOpacity80 { color: #A370AD; opacity: 0.8; }
<p style="color:#A370AD;opacity:0.8;">80%</p>
Text with #A370AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A370AD;}
<p style="text-shadow: 3px 3px 1px #A370AD">Text here.</p>
This text has shadow with #A370AD color.
.textShadow {text-shadow: 3px 3px 1px #A370AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A370AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #A370AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A370AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A370AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #A370AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A370AD; -webkit-box-shadow: 1px 1px 3px 2px #A370AD; box-shadow: 1px 1px 3px 2px #A370AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A370AD; -webkit-box-shadow: 1px 1px 3px 2px #A370AD; box-shadow:1px 1px 3px 2px #A370AD;">
Div content here</div>
This text has color #A370AD on black background.
This text has color #A370AD on white background.
This text has black color on #A370AD background.
This text has white color on #A370AD background.