HEX: #A598FA
RGB: (165,152,250)
#A598FA contains mainly blue color. Web safe color of #A598FA is #9999FF (or #99F).
#A598FA color RGB value is (165,152,250).
RGB: (165,152,250) (65%,60%,98%)
R 165 of 255 = 65%
G 152 of 255 = 60%
B 250 of 255 = 98%
R + G + B ~ 74%. #A598FA is quite light color.
R + G + B =
165 + 152 + 250 = 567 (100%)
R 165 of 567 ~ 29.1%
G 152 of 567 ~ 26.81%
B 250 of 567 ~ 44.09%
#A598FA color CMYK value is (34,39,0,2).
CMYK: (34,39,0,2) C34M39Y0K2 (34%,39%,0%,2%) (0.34/0.39/0.00/0.02)
A5 | 98 | FA | |
---|---|---|---|
RGB | 165 | 152 | 250 |
HSL | 248° | 90.74% | 78.82% |
HSB/HSV | 248° | 39.20% | 98.04% |
CMYK | 34.00% | 39.20% | 0.00% |
1.96% |
HEX | A5 | 98 | FA |
Decimal | 165 | 152 | 250 |
Binary | 10100101 | 10011000 | 11111010 |
Octal | 245 | 230 | 372 |
Examples of css and html codes for elements with #A598FA color. Also use rgb(165,152,250) instead hex code.
.myTextColor { color: #A598FA; }
<p style="color:#A598FA">This sample text font color is #A598FA.</p>
This text font color is #A598FA.
.myBgColor { background-color: #A598FA; }
<div style="background-color:#A598FA">Inner text</div>
This div background color is #A598FA.
.myBorderColor { border: 1px solid #A598FA; }
<div style="border:3px solid #A598FA">Div</div>
This div border color is #A598FA.
.myOpacity80 { color: #A598FA; opacity: 0.8; }
<p style="color:#A598FA;opacity:0.8;">80%</p>
Text with #A598FA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A598FA;}
<p style="text-shadow: 3px 3px 1px #A598FA">Text here.</p>
This text has shadow with #A598FA color.
.textShadow {text-shadow: 3px 3px 1px #A598FA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A598FA, 5px 5px 20px red">Text here.</p>
This text has shadow with #A598FA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A598FA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A598FA, Direction=45, Strength=4)">Text</p>
This text has shadow with #A598FA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A598FA; -webkit-box-shadow: 1px 1px 3px 2px #A598FA; box-shadow: 1px 1px 3px 2px #A598FA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A598FA; -webkit-box-shadow: 1px 1px 3px 2px #A598FA; box-shadow:1px 1px 3px 2px #A598FA;">
Div content here</div>
This text has color #A598FA on black background.
This text has color #A598FA on white background.
This text has black color on #A598FA background.
This text has white color on #A598FA background.