HEX: #A37DAD
RGB: (163,125,173)
#A37DAD contains red, green and blue colors in about the same proportion. Web safe color of #A37DAD is #996699 (or #969).
#A37DAD color RGB value is (163,125,173).
RGB: (163,125,173) (64%,49%,68%)
R 163 of 255 = 64%
G 125 of 255 = 49%
B 173 of 255 = 68%
R + G + B ~ 60%. #A37DAD is middle color (not dark and not light).
R + G + B =
163 + 125 + 173 = 461 (100%)
R 163 of 461 ~ 35.36%
G 125 of 461 ~ 27.11%
B 173 of 461 ~ 37.53%
#A37DAD color CMYK value is (6,28,0,32).
CMYK: (6,28,0,32) C6M28Y0K32 (6%,28%,0%,32%) (0.06/0.28/0.00/0.32)
A3 | 7D | AD | |
---|---|---|---|
RGB | 163 | 125 | 173 |
HSL | 288° | 22.64% | 58.43% |
HSB/HSV | 288° | 27.75% | 67.84% |
CMYK | 5.78% | 27.75% | 0.00% |
32.16% |
HEX | A3 | 7D | AD |
Decimal | 163 | 125 | 173 |
Binary | 10100011 | 1111101 | 10101101 |
Octal | 243 | 175 | 255 |
Examples of css and html codes for elements with #A37DAD color. Also use rgb(163,125,173) instead hex code.
.myTextColor { color: #A37DAD; }
<p style="color:#A37DAD">This sample text font color is #A37DAD.</p>
This text font color is #A37DAD.
.myBgColor { background-color: #A37DAD; }
<div style="background-color:#A37DAD">Inner text</div>
This div background color is #A37DAD.
.myBorderColor { border: 1px solid #A37DAD; }
<div style="border:3px solid #A37DAD">Div</div>
This div border color is #A37DAD.
.myOpacity80 { color: #A37DAD; opacity: 0.8; }
<p style="color:#A37DAD;opacity:0.8;">80%</p>
Text with #A37DAD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A37DAD;}
<p style="text-shadow: 3px 3px 1px #A37DAD">Text here.</p>
This text has shadow with #A37DAD color.
.textShadow {text-shadow: 3px 3px 1px #A37DAD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A37DAD, 5px 5px 20px red">Text here.</p>
This text has shadow with #A37DAD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A37DAD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A37DAD, Direction=45, Strength=4)">Text</p>
This text has shadow with #A37DAD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A37DAD; -webkit-box-shadow: 1px 1px 3px 2px #A37DAD; box-shadow: 1px 1px 3px 2px #A37DAD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A37DAD; -webkit-box-shadow: 1px 1px 3px 2px #A37DAD; box-shadow:1px 1px 3px 2px #A37DAD;">
Div content here</div>
This text has color #A37DAD on black background.
This text has color #A37DAD on white background.
This text has black color on #A37DAD background.
This text has white color on #A37DAD background.