HEX: #A590FB
RGB: (165,144,251)
#A590FB contains mainly blue color. Web safe color of #A590FB is #9999FF (or #99F).
#A590FB color RGB value is (165,144,251).
RGB: (165,144,251) (65%,56%,98%)
R 165 of 255 = 65%
G 144 of 255 = 56%
B 251 of 255 = 98%
R + G + B ~ 73%. #A590FB is quite light color.
R + G + B =
165 + 144 + 251 = 560 (100%)
R 165 of 560 ~ 29.46%
G 144 of 560 ~ 25.71%
B 251 of 560 ~ 44.82%
#A590FB color CMYK value is (34,43,0,2).
CMYK: (34,43,0,2) C34M43Y0K2 (34%,43%,0%,2%) (0.34/0.43/0.00/0.02)
A5 | 90 | FB | |
---|---|---|---|
RGB | 165 | 144 | 251 |
HSL | 252° | 93.04% | 77.45% |
HSB/HSV | 252° | 42.63% | 98.43% |
CMYK | 34.26% | 42.63% | 0.00% |
1.57% |
HEX | A5 | 90 | FB |
Decimal | 165 | 144 | 251 |
Binary | 10100101 | 10010000 | 11111011 |
Octal | 245 | 220 | 373 |
Examples of css and html codes for elements with #A590FB color. Also use rgb(165,144,251) instead hex code.
.myTextColor { color: #A590FB; }
<p style="color:#A590FB">This sample text font color is #A590FB.</p>
This text font color is #A590FB.
.myBgColor { background-color: #A590FB; }
<div style="background-color:#A590FB">Inner text</div>
This div background color is #A590FB.
.myBorderColor { border: 1px solid #A590FB; }
<div style="border:3px solid #A590FB">Div</div>
This div border color is #A590FB.
.myOpacity80 { color: #A590FB; opacity: 0.8; }
<p style="color:#A590FB;opacity:0.8;">80%</p>
Text with #A590FB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A590FB;}
<p style="text-shadow: 3px 3px 1px #A590FB">Text here.</p>
This text has shadow with #A590FB color.
.textShadow {text-shadow: 3px 3px 1px #A590FB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A590FB, 5px 5px 20px red">Text here.</p>
This text has shadow with #A590FB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A590FB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A590FB, Direction=45, Strength=4)">Text</p>
This text has shadow with #A590FB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A590FB; -webkit-box-shadow: 1px 1px 3px 2px #A590FB; box-shadow: 1px 1px 3px 2px #A590FB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A590FB; -webkit-box-shadow: 1px 1px 3px 2px #A590FB; box-shadow:1px 1px 3px 2px #A590FB;">
Div content here</div>
This text has color #A590FB on black background.
This text has color #A590FB on white background.
This text has black color on #A590FB background.
This text has white color on #A590FB background.