HEX: #A56296
RGB: (165,98,150)
#A56296 contains mainly red and blue colors. Web safe color of #A56296 is #996699 (or #969).
#A56296 color RGB value is (165,98,150).
RGB: (165,98,150) (65%,38%,59%)
R 165 of 255 = 65%
G 98 of 255 = 38%
B 150 of 255 = 59%
R + G + B ~ 54%. #A56296 is middle color (not dark and not light).
R + G + B =
165 + 98 + 150 = 413 (100%)
R 165 of 413 ~ 39.95%
G 98 of 413 ~ 23.73%
B 150 of 413 ~ 36.32%
#A56296 color CMYK value is (0,41,9,35).
CMYK: (0,41,9,35) C0M41Y9K35 (0%,41%,9%,35%) (0.00/0.41/0.09/0.35)
A5 | 62 | 96 | |
---|---|---|---|
RGB | 165 | 98 | 150 |
HSL | 313° | 27.13% | 51.57% |
HSB/HSV | 313° | 40.61% | 64.71% |
CMYK | 0.00% | 40.61% | 9.09% |
35.29% |
HEX | A5 | 62 | 96 |
Decimal | 165 | 98 | 150 |
Binary | 10100101 | 1100010 | 10010110 |
Octal | 245 | 142 | 226 |
Examples of css and html codes for elements with #A56296 color. Also use rgb(165,98,150) instead hex code.
.myTextColor { color: #A56296; }
<p style="color:#A56296">This sample text font color is #A56296.</p>
This text font color is #A56296.
.myBgColor { background-color: #A56296; }
<div style="background-color:#A56296">Inner text</div>
This div background color is #A56296.
.myBorderColor { border: 1px solid #A56296; }
<div style="border:3px solid #A56296">Div</div>
This div border color is #A56296.
.myOpacity80 { color: #A56296; opacity: 0.8; }
<p style="color:#A56296;opacity:0.8;">80%</p>
Text with #A56296 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A56296;}
<p style="text-shadow: 3px 3px 1px #A56296">Text here.</p>
This text has shadow with #A56296 color.
.textShadow {text-shadow: 3px 3px 1px #A56296, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A56296, 5px 5px 20px red">Text here.</p>
This text has shadow with #A56296 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A56296, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A56296, Direction=45, Strength=4)">Text</p>
This text has shadow with #A56296 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A56296; -webkit-box-shadow: 1px 1px 3px 2px #A56296; box-shadow: 1px 1px 3px 2px #A56296; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A56296; -webkit-box-shadow: 1px 1px 3px 2px #A56296; box-shadow:1px 1px 3px 2px #A56296;">
Div content here</div>
This text has color #A56296 on black background.
This text has color #A56296 on white background.
This text has black color on #A56296 background.
This text has white color on #A56296 background.