HEX: #A53C87
RGB: (165,60,135)
#A53C87 contains mainly red and blue colors. Web safe color of #A53C87 is #993399 (or #939).
#A53C87 color RGB value is (165,60,135).
RGB: (165,60,135) (65%,24%,53%)
R 165 of 255 = 65%
G 60 of 255 = 24%
B 135 of 255 = 53%
R + G + B ~ 47%. #A53C87 is middle color (not dark and not light).
R + G + B =
165 + 60 + 135 = 360 (100%)
R 165 of 360 ~ 45.83%
G 60 of 360 ~ 16.67%
B 135 of 360 ~ 37.5%
#A53C87 color CMYK value is (0,64,18,35).
CMYK: (0,64,18,35) C0M64Y18K35 (0%,64%,18%,35%) (0.00/0.64/0.18/0.35)
A5 | 3C | 87 | |
---|---|---|---|
RGB | 165 | 60 | 135 |
HSL | 317° | 46.67% | 44.12% |
HSB/HSV | 317° | 63.64% | 64.71% |
CMYK | 0.00% | 63.64% | 18.18% |
35.29% |
HEX | A5 | 3C | 87 |
Decimal | 165 | 60 | 135 |
Binary | 10100101 | 111100 | 10000111 |
Octal | 245 | 74 | 207 |
Examples of css and html codes for elements with #A53C87 color. Also use rgb(165,60,135) instead hex code.
.myTextColor { color: #A53C87; }
<p style="color:#A53C87">This sample text font color is #A53C87.</p>
This text font color is #A53C87.
.myBgColor { background-color: #A53C87; }
<div style="background-color:#A53C87">Inner text</div>
This div background color is #A53C87.
.myBorderColor { border: 1px solid #A53C87; }
<div style="border:3px solid #A53C87">Div</div>
This div border color is #A53C87.
.myOpacity80 { color: #A53C87; opacity: 0.8; }
<p style="color:#A53C87;opacity:0.8;">80%</p>
Text with #A53C87 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A53C87;}
<p style="text-shadow: 3px 3px 1px #A53C87">Text here.</p>
This text has shadow with #A53C87 color.
.textShadow {text-shadow: 3px 3px 1px #A53C87, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A53C87, 5px 5px 20px red">Text here.</p>
This text has shadow with #A53C87 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A53C87, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A53C87, Direction=45, Strength=4)">Text</p>
This text has shadow with #A53C87 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A53C87; -webkit-box-shadow: 1px 1px 3px 2px #A53C87; box-shadow: 1px 1px 3px 2px #A53C87; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A53C87; -webkit-box-shadow: 1px 1px 3px 2px #A53C87; box-shadow:1px 1px 3px 2px #A53C87;">
Div content here</div>
This text has color #A53C87 on black background.
This text has color #A53C87 on white background.
This text has black color on #A53C87 background.
This text has white color on #A53C87 background.