HEX: #A55863
RGB: (165,88,99)
#A55863 contains mainly red color. Web safe color of #A55863 is #996666 (or #966).
#A55863 color RGB value is (165,88,99).
RGB: (165,88,99) (65%,35%,39%)
R 165 of 255 = 65%
G 88 of 255 = 35%
B 99 of 255 = 39%
R + G + B ~ 46%. #A55863 is middle color (not dark and not light).
R + G + B =
165 + 88 + 99 = 352 (100%)
R 165 of 352 ~ 46.88%
G 88 of 352 ~ 25%
B 99 of 352 ~ 28.13%
#A55863 color CMYK value is (0,47,40,35).
CMYK: (0,47,40,35) C0M47Y40K35 (0%,47%,40%,35%) (0.00/0.47/0.40/0.35)
A5 | 58 | 63 | |
---|---|---|---|
RGB | 165 | 88 | 99 |
HSL | 351° | 30.43% | 49.61% |
HSB/HSV | 351° | 46.67% | 64.71% |
CMYK | 0.00% | 46.67% | 40.00% |
35.29% |
HEX | A5 | 58 | 63 |
Decimal | 165 | 88 | 99 |
Binary | 10100101 | 1011000 | 1100011 |
Octal | 245 | 130 | 143 |
Examples of css and html codes for elements with #A55863 color. Also use rgb(165,88,99) instead hex code.
.myTextColor { color: #A55863; }
<p style="color:#A55863">This sample text font color is #A55863.</p>
This text font color is #A55863.
.myBgColor { background-color: #A55863; }
<div style="background-color:#A55863">Inner text</div>
This div background color is #A55863.
.myBorderColor { border: 1px solid #A55863; }
<div style="border:3px solid #A55863">Div</div>
This div border color is #A55863.
.myOpacity80 { color: #A55863; opacity: 0.8; }
<p style="color:#A55863;opacity:0.8;">80%</p>
Text with #A55863 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A55863;}
<p style="text-shadow: 3px 3px 1px #A55863">Text here.</p>
This text has shadow with #A55863 color.
.textShadow {text-shadow: 3px 3px 1px #A55863, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A55863, 5px 5px 20px red">Text here.</p>
This text has shadow with #A55863 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A55863, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A55863, Direction=45, Strength=4)">Text</p>
This text has shadow with #A55863 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A55863; -webkit-box-shadow: 1px 1px 3px 2px #A55863; box-shadow: 1px 1px 3px 2px #A55863; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A55863; -webkit-box-shadow: 1px 1px 3px 2px #A55863; box-shadow:1px 1px 3px 2px #A55863;">
Div content here</div>
This text has color #A55863 on black background.
This text has color #A55863 on white background.
This text has black color on #A55863 background.
This text has white color on #A55863 background.