HEX: #A56EBF
RGB: (165,110,191)
#A56EBF contains mainly red and blue colors. Web safe color of #A56EBF is #9966CC (or #96C).
#A56EBF color RGB value is (165,110,191).
RGB: (165,110,191) (65%,43%,75%)
R 165 of 255 = 65%
G 110 of 255 = 43%
B 191 of 255 = 75%
R + G + B ~ 61%. #A56EBF is quite light color.
R + G + B =
165 + 110 + 191 = 466 (100%)
R 165 of 466 ~ 35.41%
G 110 of 466 ~ 23.61%
B 191 of 466 ~ 40.99%
#A56EBF color CMYK value is (14,42,0,25).
CMYK: (14,42,0,25) C14M42Y0K25 (14%,42%,0%,25%) (0.14/0.42/0.00/0.25)
A5 | 6E | BF | |
---|---|---|---|
RGB | 165 | 110 | 191 |
HSL | 281° | 38.76% | 59.02% |
HSB/HSV | 281° | 42.41% | 74.90% |
CMYK | 13.61% | 42.41% | 0.00% |
25.10% |
HEX | A5 | 6E | BF |
Decimal | 165 | 110 | 191 |
Binary | 10100101 | 1101110 | 10111111 |
Octal | 245 | 156 | 277 |
Examples of css and html codes for elements with #A56EBF color. Also use rgb(165,110,191) instead hex code.
.myTextColor { color: #A56EBF; }
<p style="color:#A56EBF">This sample text font color is #A56EBF.</p>
This text font color is #A56EBF.
.myBgColor { background-color: #A56EBF; }
<div style="background-color:#A56EBF">Inner text</div>
This div background color is #A56EBF.
.myBorderColor { border: 1px solid #A56EBF; }
<div style="border:3px solid #A56EBF">Div</div>
This div border color is #A56EBF.
.myOpacity80 { color: #A56EBF; opacity: 0.8; }
<p style="color:#A56EBF;opacity:0.8;">80%</p>
Text with #A56EBF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A56EBF;}
<p style="text-shadow: 3px 3px 1px #A56EBF">Text here.</p>
This text has shadow with #A56EBF color.
.textShadow {text-shadow: 3px 3px 1px #A56EBF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A56EBF, 5px 5px 20px red">Text here.</p>
This text has shadow with #A56EBF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A56EBF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A56EBF, Direction=45, Strength=4)">Text</p>
This text has shadow with #A56EBF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A56EBF; -webkit-box-shadow: 1px 1px 3px 2px #A56EBF; box-shadow: 1px 1px 3px 2px #A56EBF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A56EBF; -webkit-box-shadow: 1px 1px 3px 2px #A56EBF; box-shadow:1px 1px 3px 2px #A56EBF;">
Div content here</div>
This text has color #A56EBF on black background.
This text has color #A56EBF on white background.
This text has black color on #A56EBF background.
This text has white color on #A56EBF background.