HEX: #A5738F
RGB: (165,115,143)
#A5738F contains red, green and blue colors in about the same proportion. Web safe color of #A5738F is #996699 (or #969).
#A5738F color RGB value is (165,115,143).
RGB: (165,115,143) (65%,45%,56%)
R 165 of 255 = 65%
G 115 of 255 = 45%
B 143 of 255 = 56%
R + G + B ~ 55%. #A5738F is middle color (not dark and not light).
R + G + B =
165 + 115 + 143 = 423 (100%)
R 165 of 423 ~ 39.01%
G 115 of 423 ~ 27.19%
B 143 of 423 ~ 33.81%
#A5738F color CMYK value is (0,30,13,35).
CMYK: (0,30,13,35) C0M30Y13K35 (0%,30%,13%,35%) (0.00/0.30/0.13/0.35)
A5 | 73 | 8F | |
---|---|---|---|
RGB | 165 | 115 | 143 |
HSL | 326° | 21.74% | 54.90% |
HSB/HSV | 326° | 30.30% | 64.71% |
CMYK | 0.00% | 30.30% | 13.33% |
35.29% |
HEX | A5 | 73 | 8F |
Decimal | 165 | 115 | 143 |
Binary | 10100101 | 1110011 | 10001111 |
Octal | 245 | 163 | 217 |
Examples of css and html codes for elements with #A5738F color. Also use rgb(165,115,143) instead hex code.
.myTextColor { color: #A5738F; }
<p style="color:#A5738F">This sample text font color is #A5738F.</p>
This text font color is #A5738F.
.myBgColor { background-color: #A5738F; }
<div style="background-color:#A5738F">Inner text</div>
This div background color is #A5738F.
.myBorderColor { border: 1px solid #A5738F; }
<div style="border:3px solid #A5738F">Div</div>
This div border color is #A5738F.
.myOpacity80 { color: #A5738F; opacity: 0.8; }
<p style="color:#A5738F;opacity:0.8;">80%</p>
Text with #A5738F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5738F;}
<p style="text-shadow: 3px 3px 1px #A5738F">Text here.</p>
This text has shadow with #A5738F color.
.textShadow {text-shadow: 3px 3px 1px #A5738F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5738F, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5738F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5738F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5738F, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5738F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5738F; -webkit-box-shadow: 1px 1px 3px 2px #A5738F; box-shadow: 1px 1px 3px 2px #A5738F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5738F; -webkit-box-shadow: 1px 1px 3px 2px #A5738F; box-shadow:1px 1px 3px 2px #A5738F;">
Div content here</div>
This text has color #A5738F on black background.
This text has color #A5738F on white background.
This text has black color on #A5738F background.
This text has white color on #A5738F background.