HEX: #A59DDF
RGB: (165,157,223)
#A59DDF contains mainly red and blue colors. Web safe color of #A59DDF is #9999CC (or #99C).
#A59DDF color RGB value is (165,157,223).
RGB: (165,157,223) (65%,62%,87%)
R 165 of 255 = 65%
G 157 of 255 = 62%
B 223 of 255 = 87%
R + G + B ~ 71%. #A59DDF is quite light color.
R + G + B =
165 + 157 + 223 = 545 (100%)
R 165 of 545 ~ 30.28%
G 157 of 545 ~ 28.81%
B 223 of 545 ~ 40.92%
#A59DDF color CMYK value is (26,30,0,13).
CMYK: (26,30,0,13) C26M30Y0K13 (26%,30%,0%,13%) (0.26/0.30/0.00/0.13)
A5 | 9D | DF | |
---|---|---|---|
RGB | 165 | 157 | 223 |
HSL | 247° | 50.77% | 74.51% |
HSB/HSV | 247° | 29.60% | 87.45% |
CMYK | 26.01% | 29.60% | 0.00% |
12.55% |
HEX | A5 | 9D | DF |
Decimal | 165 | 157 | 223 |
Binary | 10100101 | 10011101 | 11011111 |
Octal | 245 | 235 | 337 |
Examples of css and html codes for elements with #A59DDF color. Also use rgb(165,157,223) instead hex code.
.myTextColor { color: #A59DDF; }
<p style="color:#A59DDF">This sample text font color is #A59DDF.</p>
This text font color is #A59DDF.
.myBgColor { background-color: #A59DDF; }
<div style="background-color:#A59DDF">Inner text</div>
This div background color is #A59DDF.
.myBorderColor { border: 1px solid #A59DDF; }
<div style="border:3px solid #A59DDF">Div</div>
This div border color is #A59DDF.
.myOpacity80 { color: #A59DDF; opacity: 0.8; }
<p style="color:#A59DDF;opacity:0.8;">80%</p>
Text with #A59DDF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A59DDF;}
<p style="text-shadow: 3px 3px 1px #A59DDF">Text here.</p>
This text has shadow with #A59DDF color.
.textShadow {text-shadow: 3px 3px 1px #A59DDF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A59DDF, 5px 5px 20px red">Text here.</p>
This text has shadow with #A59DDF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A59DDF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A59DDF, Direction=45, Strength=4)">Text</p>
This text has shadow with #A59DDF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A59DDF; -webkit-box-shadow: 1px 1px 3px 2px #A59DDF; box-shadow: 1px 1px 3px 2px #A59DDF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A59DDF; -webkit-box-shadow: 1px 1px 3px 2px #A59DDF; box-shadow:1px 1px 3px 2px #A59DDF;">
Div content here</div>
This text has color #A59DDF on black background.
This text has color #A59DDF on white background.
This text has black color on #A59DDF background.
This text has white color on #A59DDF background.