HEX: #A58BDD
RGB: (165,139,221)
#A58BDD contains mainly red and blue colors. Web safe color of #A58BDD is #9999CC (or #99C).
#A58BDD color RGB value is (165,139,221).
RGB: (165,139,221) (65%,55%,87%)
R 165 of 255 = 65%
G 139 of 255 = 55%
B 221 of 255 = 87%
R + G + B ~ 69%. #A58BDD is quite light color.
R + G + B =
165 + 139 + 221 = 525 (100%)
R 165 of 525 ~ 31.43%
G 139 of 525 ~ 26.48%
B 221 of 525 ~ 42.1%
#A58BDD color CMYK value is (25,37,0,13).
CMYK: (25,37,0,13) C25M37Y0K13 (25%,37%,0%,13%) (0.25/0.37/0.00/0.13)
A5 | 8B | DD | |
---|---|---|---|
RGB | 165 | 139 | 221 |
HSL | 259° | 54.67% | 70.59% |
HSB/HSV | 259° | 37.10% | 86.67% |
CMYK | 25.34% | 37.10% | 0.00% |
13.33% |
HEX | A5 | 8B | DD |
Decimal | 165 | 139 | 221 |
Binary | 10100101 | 10001011 | 11011101 |
Octal | 245 | 213 | 335 |
Examples of css and html codes for elements with #A58BDD color. Also use rgb(165,139,221) instead hex code.
.myTextColor { color: #A58BDD; }
<p style="color:#A58BDD">This sample text font color is #A58BDD.</p>
This text font color is #A58BDD.
.myBgColor { background-color: #A58BDD; }
<div style="background-color:#A58BDD">Inner text</div>
This div background color is #A58BDD.
.myBorderColor { border: 1px solid #A58BDD; }
<div style="border:3px solid #A58BDD">Div</div>
This div border color is #A58BDD.
.myOpacity80 { color: #A58BDD; opacity: 0.8; }
<p style="color:#A58BDD;opacity:0.8;">80%</p>
Text with #A58BDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A58BDD;}
<p style="text-shadow: 3px 3px 1px #A58BDD">Text here.</p>
This text has shadow with #A58BDD color.
.textShadow {text-shadow: 3px 3px 1px #A58BDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A58BDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #A58BDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A58BDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A58BDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #A58BDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A58BDD; -webkit-box-shadow: 1px 1px 3px 2px #A58BDD; box-shadow: 1px 1px 3px 2px #A58BDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A58BDD; -webkit-box-shadow: 1px 1px 3px 2px #A58BDD; box-shadow:1px 1px 3px 2px #A58BDD;">
Div content here</div>
This text has color #A58BDD on black background.
This text has color #A58BDD on white background.
This text has black color on #A58BDD background.
This text has white color on #A58BDD background.