HEX: #A059DF
RGB: (160,89,223)
#A059DF contains mainly blue color. Web safe color of #A059DF is #9966CC (or #96C).
#A059DF color RGB value is (160,89,223).
RGB: (160,89,223) (63%,35%,87%)
R 160 of 255 = 63%
G 89 of 255 = 35%
B 223 of 255 = 87%
R + G + B ~ 62%. #A059DF is quite light color.
R + G + B =
160 + 89 + 223 = 472 (100%)
R 160 of 472 ~ 33.9%
G 89 of 472 ~ 18.86%
B 223 of 472 ~ 47.25%
#A059DF color CMYK value is (28,60,0,13).
CMYK: (28,60,0,13) C28M60Y0K13 (28%,60%,0%,13%) (0.28/0.60/0.00/0.13)
A0 | 59 | DF | |
---|---|---|---|
RGB | 160 | 89 | 223 |
HSL | 272° | 67.68% | 61.18% |
HSB/HSV | 272° | 60.09% | 87.45% |
CMYK | 28.25% | 60.09% | 0.00% |
12.55% |
HEX | A0 | 59 | DF |
Decimal | 160 | 89 | 223 |
Binary | 10100000 | 1011001 | 11011111 |
Octal | 240 | 131 | 337 |
Examples of css and html codes for elements with #A059DF color. Also use rgb(160,89,223) instead hex code.
.myTextColor { color: #A059DF; }
<p style="color:#A059DF">This sample text font color is #A059DF.</p>
This text font color is #A059DF.
.myBgColor { background-color: #A059DF; }
<div style="background-color:#A059DF">Inner text</div>
This div background color is #A059DF.
.myBorderColor { border: 1px solid #A059DF; }
<div style="border:3px solid #A059DF">Div</div>
This div border color is #A059DF.
.myOpacity80 { color: #A059DF; opacity: 0.8; }
<p style="color:#A059DF;opacity:0.8;">80%</p>
Text with #A059DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A059DF;}
<p style="text-shadow: 3px 3px 1px #A059DF">Text here.</p>
This text has shadow with #A059DF color.
.textShadow {text-shadow: 3px 3px 1px #A059DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A059DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #A059DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A059DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A059DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #A059DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A059DF; -webkit-box-shadow: 1px 1px 3px 2px #A059DF; box-shadow: 1px 1px 3px 2px #A059DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A059DF; -webkit-box-shadow: 1px 1px 3px 2px #A059DF; box-shadow:1px 1px 3px 2px #A059DF;">
Div content here</div>
This text has color #A059DF on black background.
This text has color #A059DF on white background.
This text has black color on #A059DF background.
This text has white color on #A059DF background.